#include "MCerPhotEvt.h" #include #include #include #include #include "MLog.h" #include "MHexagon.h" #include "MCerPhotPix.h" ClassImp(MCerPhotEvt) MCerPhotEvt::MCerPhotEvt(const char *name, const char *title) : fNumPixels(0) { // the default constructor *fName = name ? name : "MCerPhotEvt"; *fTitle = name ? name : "(Number of Photon)-Event Information"; fPixels = new TClonesArray ("MCerPhotPix", 577) ; // // FIXME: is this really necessary? // fPixels->Clear(); } void MCerPhotEvt::Draw(Option_t* option) { // // FIXME!!! Here the Draw function of the CamDisplay // should be called to add the CamDisplay to the Pad. // The drawing should be done in MCamDisplay::Paint // // MGeomCam *geom = fType ? new MGeomCamMagic : new MGeomCamCT1; // MCamDisplay *disp = new MCamDisplay(geom); // delete geom; // disp->DrawPhotNum(this); } void MCerPhotEvt::AddPixel(Int_t id, Float_t nph, Float_t err) { // // add a new pixel to the list and increase the number // of valid pixels in the list by one // // TClonesArray -> 'operator new with placement' should be used new ((*fPixels)[fNumPixels++]) MCerPhotPix( id, nph, err); } void MCerPhotEvt::Clear(Option_t *) { // // reset counter and delete netries in list. // fNumPixels = 0 ; fPixels->Clear() ; } void MCerPhotEvt::Print(Option_t *) { const Int_t entries = fPixels->GetEntries(); *fLog << "MCerPhotEvt::Print()" << endl << "Number of Pixels: " << fNumPixels << "(" << entries << ")" << endl ; for (Int_t il=0; ilGetEntries(); for (Int_t il=0; ilGetEntries(); for (Int_t il=0; ilGetEntries(); for (Int_t il=0; il maxval) maxval = testval; } return maxval; }