Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-17 09:57:05

0001 int BuildTree()
0002 {
0003 
0004   //Creats EIC tree from pythia txt file output
0005   
0006 //std::string inputFile = "TestOut_all_"+seed+"seed.txt";
0007   std::string inputFile = "LQGENEP_output.txt";
0008   std::string outdir = "./";
0009   
0010   int events = 1000;
0011   
0012   gSystem->Load("libeicsmear");
0013   BuildTree(inputFile.c_str(), outdir.c_str(), events);
0014   cout << "********************************************" << endl;
0015   cout << "File: " << inputFile << " processed in directory " << outdir << endl;
0016 
0017     return 0;
0018 }