Changeset 9278 for trunk/MagicSoft/Mars/mreflector
- Timestamp:
- 01/27/09 14:01:48 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mreflector/MHReflector.cc
r9153 r9278 59 59 fTitle = title ? title : "Histogram for the reflected photons"; 60 60 61 fHistXY.SetDirectory(NULL);62 61 fHistXY.SetName("ReflXY"); 63 62 fHistXY.SetTitle("Histogram vs X/Y and Energy"); … … 65 64 fHistXY.SetYTitle("Y [\\circ]"); 66 65 fHistXY.SetZTitle("E [GeV]"); 66 fHistXY.SetDirectory(NULL); 67 67 fHistXY.Sumw2(); 68 68 69 fHistRad.SetDirectory(NULL);70 69 fHistRad.SetName("ReflRad"); 71 70 fHistRad.SetTitle("Histogram vs Radius and Energy"); … … 73 72 fHistRad.SetYTitle("R [\\circ]"); 74 73 fHistRad.SetZTitle("Cnts/deg^{2}"); 74 fHistRad.SetDirectory(NULL); 75 75 fHistRad.Sumw2(); 76 76 77 fHistSize.SetDirectory(NULL);78 77 fHistSize.SetName("ReflSize"); 79 78 fHistSize.SetTitle("Histogram vs Size and Energy"); … … 81 80 fHistSize.SetYTitle("N\\gamma"); 82 81 fHistSize.SetZTitle("Cnts"); 82 fHistSize.SetDirectory(NULL); 83 83 fHistSize.Sumw2(); 84 84 … … 111 111 return kFALSE; 112 112 } 113 113 114 MGeomCam *geom = (MGeomCam*)pList->FindObject("MGeomCam"); 114 115 if (!geom)
Note:
See TracChangeset
for help on using the changeset viewer.