/* ======================================================================== *\ ! ! * ! * This file is part of MARS, the MAGIC Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appear in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Robert Wagner, 10/2002 ! Author(s): Wolfgang Wittek, 01/2003 ! Author(s): Thomas Bretz, 04/2003 ! ! Copyright: MAGIC Software Development, 2003 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // // MSigmabar // // // // This is the storage container to hold information about // // "average" pedestal sigmas // // // // In calculating averages all sigmas are normalized to the area of pixel 0// // // ///////////////////////////////////////////////////////////////////////////// #include "MSigmabar.h" #include #include "MLog.h" #include "MLogManip.h" #include "MParList.h" #include "MGeomCam.h" #include "MGeomPix.h" #include "MCerPhotEvt.h" #include "MCerPhotPix.h" #include "MPedPhotCam.h" #include "MPedPhotPix.h" ClassImp(MSigmabar); using namespace std; // -------------------------------------------------------------------------- // MSigmabar::MSigmabar(const char *name, const char *title) { fName = name ? name : "MSigmabar"; fTitle = title ? title : "Storage container for Sigmabar"; } // -------------------------------------------------------------------------- // MSigmabar::~MSigmabar() { // do nothing special. } void MSigmabar::Reset() { fSigmabar = -1; fInnerPixels = -1; fOuterPixels = -1; fSigmabarInner = -1; fSigmabarOuter = -1; memset(fSigmabarSector, 0, sizeof(fSigmabarSector)); memset(fSigmabarInnerSector, 0, sizeof(fSigmabarInnerSector)); memset(fSigmabarOuterSector, 0, sizeof(fSigmabarOuterSector)); } // -------------------------------------------------------------------------- // // Actual calculation of sigmabar. This is done for each of the six sectors // separately due to their possibly different HV behavior. Also inner and // outer pixels are treated separately. // // Preliminary! Works for CT1 test, for real MAGIC crosschecks still have // to be done. Also implementation details will be updated, like // determination of sector to which a respective pixel belongs // Float_t MSigmabar::Calc(const MGeomCam &geom, const MPedPhotCam &ped, const MCerPhotEvt &evt) { Int_t innerPixels[6]; Int_t outerPixels[6]; Float_t innerSum[6]; Float_t outerSum[6]; memset(innerPixels, 0, sizeof(innerPixels)); memset(outerPixels, 0, sizeof(outerPixels)); memset(innerSum, 0, sizeof(innerSum)); memset(outerSum, 0, sizeof(outerSum)); // // sum up sigma/sqrt(area) for each sector, // separately for inner and outer region; // // consider all pixels with Cherenkov photon information // and require "Used" // const UInt_t npix = evt.GetNumPixels(); //*fLog << "MSigmabar : npix = " << npix << endl; for (UInt_t i=0; i 0.5) { innerPixels[sector]++; innerSum[sector]+= sigma * sqrt(ratio); } else { outerPixels[sector]++; outerSum[sector]+= sigma * sqrt(ratio); } } fInnerPixels = 0; fOuterPixels = 0; Double_t fSumInner = 0; Double_t fSumOuter = 0; for (UInt_t i=0; i<6; i++) { fSumInner += innerSum[i]; fInnerPixels += innerPixels[i]; fSumOuter += outerSum[i]; fOuterPixels += outerPixels[i]; } if (fInnerPixels > 0) fSigmabarInner = fSumInner / fInnerPixels; if (fOuterPixels > 0) fSigmabarOuter = fSumOuter / fOuterPixels; // // this is the average sigma/sqrt(area) (over all pixels) // fSigmabar = (fInnerPixels+fOuterPixels)<=0 ? 0: (fSumInner+fSumOuter)/(fInnerPixels+fOuterPixels); for (UInt_t i=0; i<6; i++) { const Double_t ip = innerPixels[i]; const Double_t op = outerPixels[i]; const Double_t iss = innerSum[i]; const Double_t oss = outerSum[i]; const Double_t sum = ip + op; fSigmabarInnerSector[i] = ip <=0 ? 0 : iss/ip; fSigmabarOuterSector[i] = op <=0 ? 0 : oss/op; fSigmabarSector[i] = sum<=0 ? 0 : (iss+oss)/sum; } //TString opt = ""; //Print(opt); return fSigmabar; } // -------------------------------------------------------------------------- // void MSigmabar::Print(Option_t *) const { *fLog << all << endl; *fLog << "Total number of inner pixels is " << fInnerPixels << endl; *fLog << "Total number of outer pixels is " << fOuterPixels << endl; *fLog << endl; *fLog << "Sigmabar Overall : " << fSigmabar << " "; *fLog << " Sectors: "; for (Int_t i=0;i<6;i++) *fLog << fSigmabarSector[i] << ", "; *fLog << endl; *fLog << "Sigmabar Inner : " << fSigmabarInner << " "; *fLog << " Sectors: "; for (Int_t i=0;i<6;i++) *fLog << fSigmabarInnerSector[i] << ", "; *fLog << endl; *fLog << "Sigmabar Outer : " << fSigmabarOuter << " "; *fLog << " Sectors: "; for (Int_t i=0;i<6;i++) *fLog << fSigmabarOuterSector[i] << ", "; *fLog << endl; }