Changeset 3188
- Timestamp:
- 02/16/04 13:47:09 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3187 r3188 4 4 5 5 -*-*- END OF LINE -*-*- 6 2004/02/16: Markus Gaug 7 8 * manalysis/MPedestalCam.h 9 - changed type of fTotalEntries from ULong_t to UInt_t 10 - fixed documentation of fTotalEntries 11 12 6 13 2004/02/16: Thomas Bretz 7 14 -
trunk/MagicSoft/Mars/macros/pedphotcalc.C
r2836 r3188 124 124 MCalibrationCalc calcalc; 125 125 126 // 127 // Apply a filter against cosmics 128 // (was directly in MCalibrationCalc in earlier versions) 129 // 130 MFCosmics cosmics; 131 MContinue cont(&cosmics); 132 126 133 // 127 134 // As long as we don't have digital modules, … … 133 140 tlist2.AddToList(&geomapl); 134 141 tlist2.AddToList(&sigcalc); 142 // 143 // In case, you want to skip the cosmics rejection, 144 // uncomment the next line 145 // 146 tlist2.AddToList(&cont); 147 // 135 148 tlist2.AddToList(&calcalc); 136 149 -
trunk/MagicSoft/Mars/manalysis/MPedestalCam.h
r3172 r3188 19 19 TClonesArray *fArray; // FIXME: Change TClonesArray away from a pointer? 20 20 21 U Long_t fTotalEntries;21 UInt_t fTotalEntries; 22 22 23 23 public: … … 33 33 34 34 // Setters 35 void SetTotalEntries(const U Long_t n) { fTotalEntries = n; }35 void SetTotalEntries(const UInt_t n) { fTotalEntries = n; } 36 36 37 37 // Getters 38 Int_tGetSize() const;39 U Long_t GetTotalEntries() const { return fTotalEntries; }38 UInt_t GetSize() const; 39 UInt_t GetTotalEntries() const { return fTotalEntries; } 40 40 41 41 Float_t GetPedestalMin(const MGeomCam *cam) const;
Note:
See TracChangeset
for help on using the changeset viewer.