Changeset 764 for trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.cc
- Timestamp:
- 04/23/01 15:12:45 (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCerPhotCalc.cc
r749 r764 23 23 \* ======================================================================== */ 24 24 25 ///////////////////////////////////////////////////////////////////////////// 26 // // 27 // MCerPhotCalc // 28 // // 29 ///////////////////////////////////////////////////////////////////////////// 25 ////////////////////////////////////////////////////////////////////////////// 26 // // 27 // MCerPhotCalc // 28 // // 29 // This is a task which calculates the number of photons from the FADC // 30 // time slices. At the moment it integrates simply the FADC values. // 31 // // 32 ////////////////////////////////////////////////////////////////////////////// 30 33 31 34 #include "MCerPhotCalc.h" … … 43 46 ClassImp(MCerPhotCalc) 44 47 45 MRawEvtData *fRawEvt; // raw event data (time slices) 46 MPedestalCam *fPedestals; // Pedestals of all pixels in the camera 47 MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation 48 48 // -------------------------------------------------------------------------- 49 // 50 // Default constructor. 51 // 49 52 MCerPhotCalc::MCerPhotCalc(const char *name, const char *title) 50 53 { … … 53 56 } 54 57 58 // -------------------------------------------------------------------------- 59 // 60 // The PreProcess searches for the following input containers: 61 // - MRawEvtData 62 // - MPedestalCam 63 // 64 // The following output containers are also searched and created if 65 // they were not found: 66 // - MCerPhotEvt 67 // 55 68 Bool_t MCerPhotCalc::PreProcess( MParList *pList ) 56 69 { … … 76 89 } 77 90 91 // -------------------------------------------------------------------------- 92 // 93 // Calculate the integral of the FADC time slaices and store them as a new 94 // pixel in the MCerPhotEvt container. 95 // 78 96 Bool_t MCerPhotCalc::Process() 79 97 {
Note:
See TracChangeset
for help on using the changeset viewer.