Changeset 765 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 04/23/01 15:42:03 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 5 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() ) -
trunk/MagicSoft/Mars/mhist/MFillHHillas.cc
r749 r765 41 41 ClassImp(MFillHHillas) 42 42 43 // -------------------------------------------------------------------------- 43 44 MFillHHillas::MFillHHillas (const char *name, const char *title) 44 45 { … … 47 48 } 48 49 50 // -------------------------------------------------------------------------- 49 51 Bool_t MFillHHillas::PreProcess (MParList *pList) 50 52 { … … 63 65 } 64 66 67 // -------------------------------------------------------------------------- 65 68 Bool_t MFillHHillas::Process() 66 69 { -
trunk/MagicSoft/Mars/mhist/MFillHStarMap.cc
r749 r765 42 42 ClassImp(MFillHStarMap) 43 43 44 // -------------------------------------------------------------------------- 44 45 MFillHStarMap::MFillHStarMap (const char *name, const char *title) 45 46 { … … 48 49 } 49 50 51 // -------------------------------------------------------------------------- 50 52 Bool_t MFillHStarMap::PreProcess (MParList *pList) 51 53 { … … 64 66 } 65 67 68 // -------------------------------------------------------------------------- 66 69 Bool_t MFillHStarMap::Process() 67 70 { -
trunk/MagicSoft/Mars/mhist/MHFadcCam.cc
r749 r765 38 38 ClassImp(MHFadcCam) 39 39 40 // -------------------------------------------------------------------------- 41 // 42 // default constructor 43 // creates an a list of histograms for all pixels and both gain channels 44 // 40 45 MHFadcCam::MHFadcCam (const char *name, const char *title) 41 46 { 42 //43 // default constructor44 // creates an a list of histograms for all pixels and both gain channels45 //46 47 47 // 48 48 // set the name and title of this object … … 63 63 } 64 64 65 // -------------------------------------------------------------------------- 65 66 MHFadcCam::~MHFadcCam () 66 67 { -
trunk/MagicSoft/Mars/mhist/MHFadcPix.cc
r749 r765 39 39 ClassImp(MHFadcPix) 40 40 41 // -------------------------------------------------------------------------- 42 // 43 // Creates the histograms for lo and hi gain of one pixel 44 // 41 45 MHFadcPix::MHFadcPix(UInt_t pixid) 42 46 { 43 //44 // Creates the histograms for lo and hi gain of one pixel45 //46 47 // FIXME! Set the right axis titles and ... and ... 47 //48 48 Char_t tmp1[40]="hi"; 49 49 Char_t tmp2[40]="hi gain Pixel"; … … 68 68 } 69 69 70 // -------------------------------------------------------------------------- 70 71 MHFadcPix::~MHFadcPix() 71 72 { … … 74 75 } 75 76 77 // -------------------------------------------------------------------------- 76 78 void MHFadcPix::Draw(Option_t *) 77 79 {
Note:
See TracChangeset
for help on using the changeset viewer.