Changeset 6569 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 02/17/05 17:09:00 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCameraData.cc
r4838 r6569 420 420 *fLog << warn << "MCameraData::DrawPixelContent - not available." << endl; 421 421 } 422 423 void MCameraData::Print(Option_t *o) const 424 { 425 MParContainer::Print(o); 426 *fLog << "Size = " << fData.GetSize() << endl; 427 for (int i=0; i<fData.GetSize(); i++) 428 cout << i << ": " << fData[i] << endl; 429 } -
trunk/MagicSoft/Mars/manalysis/MCameraData.h
r4838 r6569 52 52 Double_t operator[](int i) { return fData[i]; } 53 53 54 void Print(Option_t *o="") const; 55 54 56 Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const; 55 57 void DrawPixelContent(Int_t num) const; -
trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.cc
r3538 r6569 31 31 // 32 32 // Input Containers: 33 // MRawEvtData, MPed PhotCam33 // MRawEvtData, MPedestalCam 34 34 // 35 35 // Output Containers: … … 48 48 #include "MRawEvtData.h" // MRawEvtData::GetNumPixels 49 49 #include "MCerPhotEvt.h" 50 #include "MPed PhotPix.h"51 #include "MPed PhotCam.h"50 #include "MPedestalPix.h" 51 #include "MPedestalCam.h" 52 52 #include "MRawEvtPixelIter.h" 53 53 … … 78 78 // - MRawRunHeader 79 79 // - MRawEvtData 80 // - MPe dPhotCam80 // - MPestalCam 81 81 // 82 82 // The following output containers are also searched and created if … … 124 124 } 125 125 126 fPedestals = (MPed PhotCam*)pList->FindCreateObj("MPedPhotCam");126 fPedestals = (MPedestalCam*)pList->FindCreateObj("MPedestalCam"); 127 127 if (runheader && !fPedestals) 128 128 return kFALSE; … … 263 263 264 264 Int_t idx = pixel.GetPixelId(); 265 fCerPhotEvt->AddPixel(idx, s, sigs);265 // fCerPhotEvt->AddPixel(idx, s, sigs); 266 266 267 267 // Preliminary: Do not overwrite pedestals calculated by … … 271 271 } 272 272 273 fCerPhotEvt->FixSize();274 fCerPhotEvt->SetReadyToSave();273 // fCerPhotEvt->FixSize(); 274 // fCerPhotEvt->SetReadyToSave(); 275 275 276 276 if (fPedestals) -
trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.h
r3389 r6569 16 16 17 17 class MRawEvtData; 18 class MPed PhotCam;18 class MPedestalCam; 19 19 class MCerPhotEvt; 20 20 class MRawRunHeader; … … 23 23 { 24 24 private: 25 MPed PhotCam*fPedestals; // Pedestals of all pixels in the camera25 MPedestalCam *fPedestals; // Pedestals of all pixels in the camera 26 26 MRawEvtData *fRawEvt; // raw event data (time slices) 27 27 MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
Note:
See TracChangeset
for help on using the changeset viewer.