Changeset 6857 for trunk/MagicSoft/Mars/mhcalib
- Timestamp:
- 03/18/05 17:54:02 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhcalib/MHCalibrationTestCam.cc
r6210 r6857 26 26 // MHCalibrationTestCam 27 27 // 28 // Fills the calibrated signal from an M CerPhotEvtinto28 // Fills the calibrated signal from an MSignalCam into 29 29 // MHCalibrationPix for every: 30 30 // … … 94 94 #include "MCalibrationPix.h" 95 95 96 #include "M CerPhotEvt.h"97 #include "M CerPhotPix.h"96 #include "MSignalCam.h" 97 #include "MSignalPix.h" 98 98 99 99 #include "MGeomCam.h" … … 155 155 // 156 156 // Searches pointer to: 157 // - M CerPhotEvt157 // - MSignalCam 158 158 // 159 159 // Calls: … … 174 174 175 175 176 M CerPhotEvt *signal = (MCerPhotEvt*)pList->FindObject("MCerPhotEvt");176 MSignalCam *signal = (MSignalCam*)pList->FindObject("MSignalCam"); 177 177 if (!signal) 178 178 { 179 *fLog << err << "M CerPhotEvtnot found... abort." << endl;179 *fLog << err << "MSignalCam not found... abort." << endl; 180 180 return kFALSE; 181 181 } … … 199 199 // ------------------------------------------------------------------------------- 200 200 // 201 // Retrieves pointer to M CerPhotEvt:201 // Retrieves pointer to MSignalCam: 202 202 // 203 203 // Retrieves from MGeomCam: … … 208 208 // Fills HiGain histograms (MHGausEvents::FillHistAndArray()) 209 209 // with: 210 // - M CerPhotPix::GetNumPhotons(pixid);210 // - MSignalPix::GetNumPhotons(pixid); 211 211 // 212 212 Bool_t MHCalibrationTestCam::FillHists(const MParContainer *par, const Stat_t w) 213 213 { 214 214 215 M CerPhotEvt *calibration = (MCerPhotEvt*)par;215 MSignalCam *calibration = (MSignalCam*)par; 216 216 if (!calibration) 217 217 { … … 234 234 MHCalibrationPix &histhi = (*this)[i]; 235 235 236 const M CerPhotPix *pix = calibration->GetPixById(i);236 const MSignalPix *pix = calibration->GetPixById(i); 237 237 if (!pix) 238 238 continue;
Note:
See TracChangeset
for help on using the changeset viewer.