Changeset 6855 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 03/18/05 17:21:58 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 10 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h
r6848 r6855 4 4 #pragma link off all classes; 5 5 #pragma link off all functions; 6 7 #pragma link C++ class MCerPhotPix+;8 #pragma link C++ class MCerPhotEvt+;9 #pragma link C++ class MCerPhotEvtIter+;10 #pragma link C++ class MCerPhotAnal+;11 #pragma link C++ class MCerPhotAnal2+;12 #pragma link C++ class MCerPhotCalc+;13 6 14 7 #pragma link C++ class MCameraData+; … … 27 20 28 21 #pragma link C++ class MMatrixLoop+; 29 /* 30 #pragma link C++ class MSigmabar+; 31 #pragma link C++ class MSigmabarCalc+; 32 #pragma link C++ class MSigmabarParam+; 33 */ 22 34 23 #pragma link C++ class MEventRate+; 35 24 #pragma link C++ class MEventRateCalc+; … … 38 27 #pragma link C++ class MParameterD+; 39 28 #pragma link C++ class MParameterDerr+; 40 //#pragma link C++ class MParameters+;41 29 42 30 #pragma link C++ class MMcTriggerLvl2+; … … 49 37 #pragma link C++ class MFiltercutsCalc+; 50 38 51 //#pragma link C++ class MPad+;52 39 #pragma link C++ class MMcCalibrationUpdate+; 53 //#pragma link C++ class MMakePadHistograms+;54 40 55 41 #endif -
trunk/MagicSoft/Mars/manalysis/MCameraData.cc
r6569 r6855 45 45 #include "MPedPhotPix.h" 46 46 47 #include "M CerPhotEvt.h"48 #include "M CerPhotPix.h"47 #include "MSignalCam.h" 48 #include "MSignalPix.h" 49 49 50 50 #include "MSigmabar.h" 51 #include "MArrivalTime.h"52 51 53 52 ClassImp(MCameraData); … … 57 56 // -------------------------------------------------------------------------- 58 57 // 59 // Creates a M CerPhotPix object for each pixel in the event58 // Creates a MSignalPix object for each pixel in the event 60 59 // 61 60 MCameraData::MCameraData(const char *name, const char *title) … … 99 98 // FIXME: Should the check noise<=0 be replaced by MBadPixels? 100 99 // 101 void MCameraData::CalcCleaningLevel(const M CerPhotEvt&evt, const MPedPhotCam &cam,100 void MCameraData::CalcCleaningLevel(const MSignalCam &evt, const MPedPhotCam &cam, 102 101 const MGeomCam &geom) 103 102 { … … 114 113 115 114 // calculate cleaning levels 116 for (Int_t i=0; i<entries; i++) 117 { 118 const MCerPhotPix &pix = evt[i]; 119 120 const Int_t idx = pix.GetPixId(); 115 for (Int_t idx=0; idx<entries; idx++) 116 { 117 const MSignalPix &pix = evt[idx]; 118 121 119 const Float_t noise = cam[idx].GetRms(); 122 120 … … 145 143 // FIXME: Should the check noise<=0 be replaced by MBadPixels? 146 144 // 147 void MCameraData::CalcCleaningLevel2(const M CerPhotEvt&evt, const MPedPhotCam &cam,145 void MCameraData::CalcCleaningLevel2(const MSignalCam &evt, const MPedPhotCam &cam, 148 146 const MGeomCam &geom) 149 147 { … … 164 162 // calculate cleaning levels 165 163 const Int_t entries = evt.GetNumPixels(); 166 for (Int_t i=0; i<entries; i++) 167 { 168 const MCerPhotPix &pix = evt[i]; 169 170 const Int_t idx = pix.GetPixId(); 164 for (Int_t idx=0; idx<entries; idx++) 165 { 166 const MSignalPix &pix = evt[idx]; 167 171 168 const Float_t noise = cam[idx].GetRms(); 172 169 … … 189 186 190 187 191 void MCameraData::CalcCleaningLevel(const M CerPhotEvt&evt, const MSigmabar &sgb,188 void MCameraData::CalcCleaningLevel(const MSignalCam &evt, const MSigmabar &sgb, 192 189 const MGeomCam &geom) 193 190 { … … 195 192 } 196 193 197 void MCameraData::CalcCleaningLevel(const M CerPhotEvt&evt, Double_t noise,194 void MCameraData::CalcCleaningLevel(const MSignalCam &evt, Double_t noise, 198 195 const MGeomCam &geom) 199 196 { … … 213 210 // calculate cleaning levels 214 211 const Int_t entries = evt.GetNumPixels(); 215 for (Int_t i=0; i<entries; i++) 216 { 217 const MCerPhotPix &pix = evt[i]; 218 219 const Int_t idx = pix.GetPixId(); 212 for (Int_t idx=0; idx<entries; idx++) 213 { 214 const MSignalPix &pix = evt[idx]; 220 215 221 216 // … … 237 232 // FIXME: Should the check noise<=0 be replaced by MBadPixels? 238 233 // 239 void MCameraData::CalcCleaningLevelDemocratic(const M CerPhotEvt&evt, const MPedPhotCam &cam,234 void MCameraData::CalcCleaningLevelDemocratic(const MSignalCam &evt, const MPedPhotCam &cam, 240 235 const MGeomCam &geom) 241 236 { … … 256 251 // calculate cleaning levels 257 252 const Int_t entries = evt.GetNumPixels(); 258 for (Int_t i=0; i<entries; i++) 259 { 260 const MCerPhotPix &pix = evt[i]; 261 262 const Int_t idx = pix.GetPixId(); 253 for (Int_t idx=0; idx<entries; idx++) 254 { 255 const MSignalPix &pix = evt[idx]; 256 263 257 const Float_t noise = cam[idx].GetRms(); 264 258 … … 286 280 // FIXME: Should the check noise<=0 be replaced by MBadPixels? 287 281 // 288 void MCameraData::CalcCleaningProbability(const M CerPhotEvt&evt, const MPedPhotCam &pcam,289 const MGeomCam &geom , const MArrivalTime *tcam)282 void MCameraData::CalcCleaningProbability(const MSignalCam &evt, const MPedPhotCam &pcam, 283 const MGeomCam &geom) 290 284 { 291 285 const Int_t n = geom.GetNumPixels(); … … 307 301 // Find pixel with max signal 308 302 Int_t maxidx = 0; 309 if (tcam) 310 { 311 // Find pixel enty with maximum signal 312 for (Int_t i=0; i<entries; i++) 313 { 314 const Double_t s0 = evt[i].GetNumPhotons() * geom.GetPixRatio(i); 315 const Double_t s1 = evt[maxidx].GetNumPhotons() * geom.GetPixRatio(maxidx); 316 if (s0>s1) 317 maxidx = i; 318 } 319 320 // Get software index of pixel 321 maxidx = evt[maxidx].GetPixId(); 322 } 323 324 const Double_t timemean = tcam ? (*tcam)[maxidx] : 0; 303 304 // Find pixel entry with maximum signal 305 for (Int_t i=0; i<entries; i++) 306 { 307 const Double_t s0 = evt[i].GetNumPhotons() * geom.GetPixRatio(i); 308 const Double_t s1 = evt[maxidx].GetNumPhotons() * geom.GetPixRatio(maxidx); 309 if (s0>s1) 310 maxidx = i; 311 } 312 313 const Double_t timemean = evt[maxidx].GetArrivalTime(); 325 314 const Double_t timerms = 0.75; //[slices] rms time spread around highest pixel 326 315 327 316 // calculate cleaning levels 328 for (Int_t i=0; i<entries; i++) 329 { 330 const MCerPhotPix &spix = evt[i]; 331 332 const Int_t idx = spix.GetPixId(); 317 for (Int_t idx=0; idx<entries; idx++) 318 { 319 const MSignalPix &spix = evt[idx]; 320 333 321 const Float_t rms = pcam[idx].GetRms(); 334 322 if (rms<=0) // fData[idx]=0, fValidity[idx]=0 … … 342 330 343 331 const Double_t signal = spix.GetNumPhotons() * geom.GetPixRatio(idx) * ratio / rms; 344 const Double_t time = tcam ? (*tcam)[idx] : 1;332 const Double_t time = evt[idx].GetArrivalTime(); 345 333 346 334 // if signal<0 the probability is equal 0 … … 377 365 // The level is the absolute number of photons times the area-ratio. 378 366 // 379 void MCameraData::CalcCleaningAbsolute(const M CerPhotEvt&evt, const MGeomCam &geom)367 void MCameraData::CalcCleaningAbsolute(const MSignalCam &evt, const MGeomCam &geom) 380 368 { 381 369 const Int_t n = geom.GetNumPixels(); … … 391 379 392 380 // calculate cleaning levels 393 for (Int_t i=0; i<entries; i++) 394 { 395 const MCerPhotPix &spix = evt[i]; 396 397 const Int_t idx = spix.GetPixId(); 381 for (Int_t idx=0; idx<entries; idx++) 382 { 383 const MSignalPix &spix = evt[idx]; 398 384 399 385 // Set probability -
trunk/MagicSoft/Mars/manalysis/MCameraData.h
r6569 r6855 17 17 class MGeomCam; 18 18 class MSigmabar; 19 class M CerPhotEvt;19 class MSignalCam; 20 20 class MPedPhotCam; 21 class MArrivalTime;22 21 23 22 class MCameraData : public MParContainer, public MCamEvent … … 33 32 UInt_t GetNumPixels() const { return fData.GetSize(); } 34 33 35 void CalcCleaningLevel(const M CerPhotEvt&evt, const MPedPhotCam &fCam,34 void CalcCleaningLevel(const MSignalCam &evt, const MPedPhotCam &fCam, 36 35 const MGeomCam &geom); 37 void CalcCleaningLevel(const M CerPhotEvt&evt, const MSigmabar &sgb,36 void CalcCleaningLevel(const MSignalCam &evt, const MSigmabar &sgb, 38 37 const MGeomCam &geom); 39 void CalcCleaningLevel(const M CerPhotEvt&evt, Double_t noise,38 void CalcCleaningLevel(const MSignalCam &evt, Double_t noise, 40 39 const MGeomCam &geom); 41 void CalcCleaningLevel2(const M CerPhotEvt&evt, const MPedPhotCam &fCam,40 void CalcCleaningLevel2(const MSignalCam &evt, const MPedPhotCam &fCam, 42 41 const MGeomCam &geom); 43 void CalcCleaningLevelDemocratic(const M CerPhotEvt&evt, const MPedPhotCam &cam,42 void CalcCleaningLevelDemocratic(const MSignalCam &evt, const MPedPhotCam &cam, 44 43 const MGeomCam &geom); 45 void CalcCleaningProbability(const M CerPhotEvt&evt, const MPedPhotCam &pcam,46 const MGeomCam &geom , const MArrivalTime *tcam);47 void CalcCleaningAbsolute(const M CerPhotEvt&evt, const MGeomCam &geom);44 void CalcCleaningProbability(const MSignalCam &evt, const MPedPhotCam &pcam, 45 const MGeomCam &geom); 46 void CalcCleaningAbsolute(const MSignalCam &evt, const MGeomCam &geom); 48 47 49 48 const TArrayD &GetData() const { return fData; } -
trunk/MagicSoft/Mars/manalysis/MSupercutsCalc.cc
r3140 r6855 24 24 25 25 ///////////////////////////////////////////////////////////////////////////// 26 // // 27 // MSupercutsCalc // 28 // // 29 // this class calculates the hadronness for the supercuts // 30 // the parameters of the supercuts are taken // 31 // from the container MSupercuts // 32 // // 33 // // 26 // 27 // MSupercutsCalc 28 // 29 // this class calculates the hadronness for the supercuts 30 // the parameters of the supercuts are taken 31 // from the container MSupercuts 32 // 34 33 ///////////////////////////////////////////////////////////////////////////// 35 34 #include "MSupercutsCalc.h" … … 46 45 #include "MNewImagePar.h" 47 46 #include "MMcEvt.hxx" 48 #include "MCerPhotEvt.h"49 47 #include "MGeomCam.h" 50 48 #include "MHadronness.h" -
trunk/MagicSoft/Mars/manalysis/Makefile
r6848 r6855 36 36 MCompProbCalc.cc \ 37 37 MMultiDimDistCalc.cc \ 38 MCerPhotPix.cc \39 MCerPhotEvt.cc \40 MCerPhotAnal.cc \41 MCerPhotAnal2.cc \42 MCerPhotCalc.cc \43 38 MEventRate.cc \ 44 39 MEventRateCalc.cc \
Note:
See TracChangeset
for help on using the changeset viewer.