Skip to content
Snippets Groups Projects
Commit 27dd8f1b authored by Baptiste LENIAU's avatar Baptiste LENIAU Committed by BaM
Browse files

remove old MLP_Kinf generator

parent 3ff4a790
No related branches found
No related tags found
No related merge requests found
#include "ZAI.hxx"
#include <TGraph.h>
#include <TGraph.h>
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <sstream>
#include <cmath>
#include <map>
#include <iostream>
#include <iomanip>
using namespace std;
string dtoa(double num)
{
ostringstream os(ostringstream::out);
os<<setprecision(3)<<num;
return os.str();
}
string FilePath;
string DataPath;
map<ZAI, double> ZAImass;
vector<string> JobName;
vector<string> GoodJobName;
vector<double> fTime; //Time vector of the depletion calculation (second)
vector< vector<double> > fkeff;
vector<ZAI> fAllNuclei; //All the nuclei present in the fuel
vector<IsotopicVector> fActinideCompoInit; //Fresh fuel composition
int fNOfTimeStep=0; //number of time step in the Evolution
string fEvolutionDataFolder = "";
bool fIsAllNucleiAlreadyFill=false;
void InitMass();
void CheckJob();
void ReadAndFill(string jobname);
void DumpInputNeuron(string filename);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment