Skip to content
Snippets Groups Projects
Commit 38a1d116 authored by flavigny's avatar flavigny
Browse files

Fix histo axis range for phi angles

parent 73122b4c
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ void CheckSimu(const char * fname = "Example5"){
TH2F *hEmE1VsE2 = new TH2F("hEmE1VsE2", " E1 VS E2 (reaction frame)", 300, 0, 300,300,0,300);
TH2F *hEmTheta1VsTheta2 = new TH2F("hEmTheta1VsTheta2", " Theta1 VS Theta2 (reaction frame)", 360, 0, 90,360,0,90);
TH2F *hEmPhi1VsPhi2 = new TH2F("hEmPhi1VsPhi2", " Phi1 VS Phi2 (reaction frame)", 360, 0, 360,360,0,360);
TH2F *hEmPhi1VsPhi2 = new TH2F("hEmPhi1VsPhi2", " Phi1 VS Phi2 (reaction frame)", 360, -180, 180,360,-180,180);
// Read the TTree
Int_t nentries = tree->GetEntries();
......
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