Changeset 9153 for trunk/MagicSoft/Mars/mbadpixels
- Timestamp:
- 11/11/08 11:49:49 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/mbadpixels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbadpixels/MHBadPixels.cc
r5431 r9153 170 170 // 171 171 172 Bool_t MHBadPixels::Fill(const MParContainer *par, const Stat_t w)172 Int_t MHBadPixels::Fill(const MParContainer *par, const Stat_t w) 173 173 { 174 174 if (!par) 175 return kFALSE; 176 177 Double_t theta = fPointPos->GetZd(); 175 { 176 *fLog << err << "ERROR - par==NULL." << endl; 177 return kERROR; 178 } 179 180 const Double_t theta = fPointPos->GetZd(); 178 181 179 182 const MBadPixelsCam *fBadPixels = (MBadPixelsCam*)par; -
trunk/MagicSoft/Mars/mbadpixels/MHBadPixels.h
r5431 r9153 44 44 45 45 void Draw(Option_t* option = ""); 46 46 47 Bool_t SetupFill(const MParList *plist); 47 Bool_tFill(const MParContainer *par, const Stat_t w=1);48 Int_t Fill(const MParContainer *par, const Stat_t w=1); 48 49 49 50 ClassDef(MHBadPixels, 1) // Histogram of bad pixel Id vs. Theta
Note:
See TracChangeset
for help on using the changeset viewer.