Changeset 765 for trunk/MagicSoft/Mars/mhist/MFillHFadc.cc
- Timestamp:
- 04/23/01 15:42:03 (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MFillHFadc.cc
r749 r765 24 24 \* ======================================================================== */ 25 25 26 //////////////////////////////////////////////////////////////////////// 26 ////////////////////////////////////////////////////////////////////////////// 27 27 // 28 28 // MFillHFadc … … 32 32 // This histograms (one per pixel) are stored in MHFadcCam, MHFadcPix 33 33 // 34 //////////////////////////////////////////////////////////////////////// 34 ////////////////////////////////////////////////////////////////////////////// 35 35 36 36 #include "MFillHFadc.h" … … 45 45 ClassImp(MFillHFadc) 46 46 47 // -------------------------------------------------------------------------- 47 48 MFillHFadc::MFillHFadc (const char *name, const char *title) : fRawEvtData(NULL) 48 49 { … … 51 52 } 52 53 54 // -------------------------------------------------------------------------- 55 // 56 // The PrProcess function checks for the existance of all necessary 57 // parameter containers 58 // 53 59 Bool_t MFillHFadc::PreProcess (MParList *pList) 54 60 { 55 //56 // The PrProcess function checks for the existance of all necessary57 // parameter containers58 //59 60 61 // 61 62 // check if all necessary input containers are existing … … 78 79 } 79 80 81 // -------------------------------------------------------------------------- 82 // 83 // This process function loops over all pixels in an MRawEvtData 84 // event and fills the values into histograms 85 // 80 86 Bool_t MFillHFadc::Process() 81 87 { 82 //83 // This process function loops over all pixels in an MRawEvtData84 // event and fills the values into histograms85 //86 87 88 // loop over the pixels and fill the values in the histograms 88 89 … … 91 92 const Int_t nhisamples = fRawEvtData->GetNumHiGainSamples() ; 92 93 const Int_t nlosamples = fRawEvtData->GetNumLoGainSamples() ; 93 94 // cout << "HighSamples " << iHighSamples ;95 94 96 95 while ( pixel.Next() )
Note:
See TracChangeset
for help on using the changeset viewer.