Skip to content
Snippets Groups Projects
Commit 9c9b940a authored by deserevi's avatar deserevi
Browse files

* update Analysis.cc and ControlSimu.C

parent 7ad185d6
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
GeneralTarget GeneralTarget
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%1
Target Target
THICKNESS= 21.51 THICKNESS= 1.0755
RADIUS= 1.25 RADIUS= 1.25
MATERIAL= CD2 MATERIAL= CD2
ANGLE= 0 ANGLE= 0
......
...@@ -10,7 +10,7 @@ Transfert ...@@ -10,7 +10,7 @@ Transfert
ExcitationEnergyHeavy= 0.0 ExcitationEnergyHeavy= 0.0
ExcitationEnergyLight= 0.0 ExcitationEnergyLight= 0.0
BeamEnergy= 1628.41 BeamEnergy= 1628.41
BeamEnergySpread= 0 BeamEnergySpread= 8.14
SigmaX= 0 SigmaX= 0
SigmaY= 0 SigmaY= 0
SigmaThetaX= 0 SigmaThetaX= 0
......
...@@ -48,6 +48,7 @@ void ControlSimu(const char * fname = "myResult") ...@@ -48,6 +48,7 @@ void ControlSimu(const char * fname = "myResult")
TString inFileName = fname; TString inFileName = fname;
if (!inFileName.Contains("root")) inFileName += ".root"; if (!inFileName.Contains("root")) inFileName += ".root";
TFile *inFile = new TFile(path + inFileName); TFile *inFile = new TFile(path + inFileName);
if (!inFile->IsOpen()) exit(1);
TTree *tree = (TTree*) inFile->Get("SimulatedTree"); TTree *tree = (TTree*) inFile->Get("SimulatedTree");
// Connect the branches of the TTree and activate then if necessary // Connect the branches of the TTree and activate then if necessary
...@@ -80,9 +81,22 @@ void ControlSimu(const char * fname = "myResult") ...@@ -80,9 +81,22 @@ void ControlSimu(const char * fname = "myResult")
// Read the TTree // Read the TTree
Int_t nentries = tree->GetEntries(); Int_t nentries = tree->GetEntries();
cout << "TTree contains " << nentries << " events" << endl; cout <<endl << " TTree contains " << nentries << " events" << endl;
clock_t begin=clock();
clock_t end=begin;
for (Int_t i = 0; i < nentries; i++) { for (Int_t i = 0; i < nentries; i++) {
if (i%10000 == 0) cout << "Entry " << i << endl; if (i%10000 == 0 && i!=0) {
cout.precision(5);
end = clock();
double TimeElapsed = (end-begin) / CLOCKS_PER_SEC;
double percent = (double)i/nentries ;
double TimeToWait = (TimeElapsed/percent) - TimeElapsed;
cout << "\r Progression:" << percent*100 << " % \t | \t Remaining time : ~" << TimeToWait <<"s"<< flush;
}
else if (i==nentries-1) cout << "\r Progression:" << " 100% " <<endl;
// if (i%10000 == 0) cout << "Entry " << i << endl;
// Get entry
tree->GetEntry(i); tree->GetEntry(i);
// Fill histos // Fill histos
......
TTreeName TTreeName
SimulatedTree SimulatedTree
RootFileName RootFileName
../../Outputs/Simulation/myResult.root % ../../Outputs/Simulation/myResult.root
../../Outputs/Simulation/fe60dp_100ug.root
...@@ -84,7 +84,7 @@ int main(int argc,char** argv) ...@@ -84,7 +84,7 @@ int main(int argc,char** argv)
TH2F* Position_M2 = new TH2F("Must2Positions", "Must2Positions", 2000, -200, 200, 2000, -200, 200); TH2F* Position_M2 = new TH2F("Must2Positions", "Must2Positions", 2000, -200, 200, 2000, -200, 200);
TH2F* Position_M2_tot = new TH2F("Must2Positions_tot", "Must2Positions_tot", 130, -1, 129, 130, -1, 130); TH2F* Position_M2_tot = new TH2F("Must2Positions_tot", "Must2Positions_tot", 130, -1, 129, 130, -1, 130);
cout << " ///////// Starting Analysis ///////// "<< endl << endl ; cout << endl << "///////// Starting Analysis ///////// "<< endl;
int N = Chain -> GetEntries(); int N = Chain -> GetEntries();
cout << " Number of Event to be treated : " << N << endl ; cout << " Number of Event to be treated : " << N << endl ;
clock_t begin=clock(); clock_t begin=clock();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment