Changeset 7804 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 07/26/06 11:46:55 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibConstCam.cc
r7188 r7804 227 227 void MCalibConstCam::Clear(Option_t *o) 228 228 { 229 { fArray-> ForEach(TObject, Clear)(); }230 { fAverageAreas-> ForEach(TObject, Clear)(); }231 { fAverageSectors-> ForEach(TObject, Clear)(); }229 { fArray->R__FOR_EACH(TObject, Clear)(); } 230 { fAverageAreas->R__FOR_EACH(TObject, Clear)(); } 231 { fAverageSectors->R__FOR_EACH(TObject, Clear)(); } 232 232 233 233 } -
trunk/MagicSoft/Mars/mcalib/MCalibrateData.cc
r7575 r7804 845 845 // gui elements to a macro-file. 846 846 // 847 void MCalibrateData::StreamPrimitive(o fstream &out) const847 void MCalibrateData::StreamPrimitive(ostream &out) const 848 848 { 849 849 out << " " << ClassName() << " " << GetUniqueName() << "(\""; -
trunk/MagicSoft/Mars/mcalib/MCalibrateData.h
r7374 r7804 97 97 Int_t Process(); 98 98 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print); 99 void StreamPrimitive(o fstream &out) const;99 void StreamPrimitive(ostream &out) const; 100 100 101 101 public: -
trunk/MagicSoft/Mars/mcalib/MCalibrationBlindCam.cc
r7188 r7804 171 171 172 172 fPulserColor = col; 173 fPixels-> ForEach(MCalibrationBlindPix, SetColor)(col);173 fPixels->R__FOR_EACH(MCalibrationBlindPix, SetColor)(col); 174 174 175 175 } -
trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc
r7200 r7804 170 170 void MCalibrationCam::Clear(Option_t *o) 171 171 { 172 173 { fPixels ->ForEach(TObject, Clear)(); } 174 { fAverageAreas ->ForEach(TObject, Clear)(); } 175 { fAverageSectors->ForEach(TObject, Clear)(); } 176 177 return; 172 { fPixels ->R__FOR_EACH(TObject, Clear)(); } 173 { fAverageAreas ->R__FOR_EACH(TObject, Clear)(); } 174 { fAverageSectors->R__FOR_EACH(TObject, Clear)(); } 178 175 } 179 176 -
trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityCam.cc
r7189 r7804 187 187 void MCalibrationIntensityCam::Clear(Option_t *o) 188 188 { 189 fCams-> ForEach(MCalibrationCam, Clear)();190 fHists-> ForEach(MHCalibrationCam, Clear)();189 fCams->R__FOR_EACH(MCalibrationCam, Clear)(); 190 fHists->R__FOR_EACH(MHCalibrationCam, Clear)(); 191 191 } 192 192 … … 197 197 void MCalibrationIntensityCam::Print(Option_t *o) const 198 198 { 199 fCams-> ForEach(MCalibrationCam, Print)(o);200 fHists-> ForEach(MHCalibrationCam, Print)(o);199 fCams->R__FOR_EACH(MCalibrationCam, Print)(o); 200 fHists->R__FOR_EACH(MHCalibrationCam, Print)(o); 201 201 } 202 202 … … 244 244 InitSize(1); 245 245 246 fCams-> ForEach(MCalibrationCam,Init)(geom);246 fCams->R__FOR_EACH(MCalibrationCam,Init)(geom); 247 247 } 248 248 -
trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityConstCam.cc
r7195 r7804 113 113 void MCalibrationIntensityConstCam::Clear(Option_t *o) 114 114 { 115 116 fCams->ForEach(MCalibConstCam, Clear)(); 117 return; 115 fCams->R__FOR_EACH(MCalibConstCam, Clear)(); 118 116 } 119 117 … … 124 122 void MCalibrationIntensityConstCam::Print(Option_t *o) const 125 123 { 126 fCams-> ForEach(MCalibConstCam, Print)(o);124 fCams->R__FOR_EACH(MCalibConstCam, Print)(o); 127 125 } 128 126 … … 160 158 InitSize(1); 161 159 162 fCams-> ForEach(MCalibConstCam,Init)(geom);160 fCams->R__FOR_EACH(MCalibConstCam,Init)(geom); 163 161 } 164 162
Note:
See TracChangeset
for help on using the changeset viewer.