Changeset 5817 for trunk/MagicSoft
- Timestamp:
- 01/13/05 13:46:14 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5816 r5817 24 24 * mcalib/MCalibColorSet.cc 25 25 - fixed runs 45605-45609 26 27 * msignal/MExtractor.h 28 - take out the variable fHiLoLast from the streamer. Will be 29 initialized in the ReInit(), if needed 30 31 * msignal/MExtractor.cc 32 - Initialized fHiLoLast to 0. Otherwise, a second eventloop with 33 the same extractor may have that variable set to a certain 34 value, even if not desired. The ReInit() fixes fHiLoLast, if 35 different from 0. 26 36 27 37 -
trunk/MagicSoft/Mars/msignal/MExtractor.cc
r5734 r5817 140 140 } 141 141 142 //----------------------------------------------------------------------- 143 // 144 // - Set the variable fHiLoLast to 0 (will be initialized later in ReInit() 145 // - Get the pointers to: 146 // MRawEvtData 147 // MRawRunHeader 148 // MPedestalCam 149 // 142 150 Int_t MExtractor::PreProcessStd(MParList *pList) 143 151 { 152 153 fHiLoLast = 0; 154 144 155 fRawEvt = (MRawEvtData*)pList->FindObject(AddSerialNumber("MRawEvtData")); 145 156 if (!fRawEvt) -
trunk/MagicSoft/Mars/msignal/MExtractor.h
r5768 r5817 47 47 Byte_t fLoGainLast; // Last FADC slice nr. to extract the Low Gain signal 48 48 49 Byte_t fHiLoLast; // Number of slices in fLoGainSamples counted for the High-Gain signal49 Byte_t fHiLoLast; //! Number of slices in fLoGainSamples counted for the High-Gain signal 50 50 51 51 Float_t fNumHiGainSamples; // Number High Gain FADC slices used to extract the signal
Note:
See TracChangeset
for help on using the changeset viewer.