////////////////////////////////////////////////////////////////////////////// // // * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * // * * // * Author: The ALICE Off-line Project. * // * Contributors are mentioned in the code where appropriate. * // * * // * Permission to use, copy, modify and distribute this software and its * // * documentation strictly for non-commercial purposes is hereby granted * // * without fee, provided that the above copyright notice appears in all * // * copies and that both the copyright notice and this permission notice * // * appear in the supporting documentation. The authors make no claims * // * about the suitability of this software for any purpose. It is * // * provided "as is" without express or implied warranty. * // **************************************************************************/ // ////////////////////////////////////////////////////////////////////////////// #include "TF1.h" #include "TFile.h" #include "TObjString.h" #include "TROOT.h" #include "TClonesArray.h" #include "TH1F.h" #include "TObjArray.h" #include "TTree.h" // --- Standard library --- // --- AliRoot header files --- #include "AliDAQ.h" #include "AliLog.h" #include "AliRawReader.h" #include "AliPMDRawStream.h" #include "AliPMDddldata.h" #include "AliPMDCalibGain.h" ClassImp(AliPMDCalibGain) AliPMDCalibGain::AliPMDCalibGain(): TObject() { // Standard Constructor for(Int_t idet = 0; idet < kDet; idet++) { for(Int_t ismn = 0; ismn < kMaxSMN; ismn++) { fSMIso[idet][ismn] = 0.; fSMCount[idet][ismn] = 0.; for(Int_t jrow = 0; jrow < kMaxRow; jrow++) { for(Int_t kcol = 0; kcol < kMaxCol; kcol++) { fCellIso[idet][ismn][jrow][kcol] = 0.; fCellCount[idet][ismn][jrow][kcol] = 0.; } } } } } // ------------------------------------------------------------------------ // AliPMDCalibGain::AliPMDCalibGain(const AliPMDCalibGain &pmdcalibgain): TObject(pmdcalibgain) { for(Int_t idet = 0; idet < kDet; idet++) { for(Int_t ismn = 0; ismn < kMaxSMN; ismn++) { fSMIso[idet][ismn] = pmdcalibgain.fSMIso[idet][ismn] ; fSMCount[idet][ismn] = pmdcalibgain.fSMCount[idet][ismn] ; for(Int_t jrow = 0; jrow < kMaxRow; jrow++) { for(Int_t kcol = 0; kcol < kMaxCol; kcol++) { fCellIso[idet][ismn][jrow][kcol] = pmdcalibgain.fCellIso[idet][ismn][jrow][kcol]; fCellCount[idet][ismn][jrow][kcol] = pmdcalibgain.fCellCount[idet][ismn][jrow][kcol]; } } } } } // ------------------------------------------------------------------------ // AliPMDCalibGain &AliPMDCalibGain::operator=(const AliPMDCalibGain &pmdcalibgain) { if(this != &pmdcalibgain) { for(Int_t idet = 0; idet < kDet; idet++) { for(Int_t ismn = 0; ismn < kMaxSMN; ismn++) { fSMIso[idet][ismn] = pmdcalibgain.fSMIso[idet][ismn]; fSMCount[idet][ismn] = pmdcalibgain.fSMCount[idet][ismn]; for(Int_t jrow = 0; jrow < kMaxRow;jrow++) { for(Int_t kcol = 0; kcol < kMaxCol; kcol++) { fCellIso[idet][ismn][jrow][kcol] = pmdcalibgain.fCellIso[idet][ismn][jrow][kcol]; fCellCount[idet][ismn][jrow][kcol] = pmdcalibgain.fCellCount[idet][ismn][jrow][kcol]; } } } } } return *this; } // ------------------------------------------------------------------------ // AliPMDCalibGain::~AliPMDCalibGain() { // dtor } // ------------------------------------------------------------------------ // Bool_t AliPMDCalibGain::ProcessEvent(AliRawReader *rawReader, TObjArray *pmdddlcont) { // Calculates the ADC of isolated cell //TObjArray pmdddlcont; const Int_t kDDL = AliDAQ::NumberOfDdls("PMD"); const Int_t kCellNeighbour = 6; Int_t neibx[6] = {1,0,-1,-1,0,1}; Int_t neiby[6] = {0,1,1,0,-1,-1}; Int_t id1,jd1; //neighbour row/col Int_t isocount; //number of neighbours with 0 signal Float_t d1[kDet][kMaxSMN][kMaxRow][kMaxCol]; for(Int_t idet = 0; idet < kDet; idet++) { for(Int_t ismn = 0; ismn < kMaxSMN; ismn++) { for(Int_t irow = 0; irow < kMaxRow; irow++) { for(Int_t icol = 0; icol < kMaxCol; icol++) { d1[idet][ismn][irow][icol] = 0.; } } } } AliPMDRawStream rawStream(rawReader); Int_t iddl; Int_t numberofDDLs = 0; while ((iddl = rawStream.DdlData(pmdddlcont)) >=0) { numberofDDLs++; Int_t ientries = pmdddlcont->GetEntries(); for (Int_t ient = 0; ient < ientries; ient++) { AliPMDddldata *pmdddl = (AliPMDddldata*)pmdddlcont->UncheckedAt(ient); Int_t idet = pmdddl->GetDetector(); Int_t ismn = pmdddl->GetSMN(); //Int_t mcm = pmdddl->GetMCM(); //Int_t ichno = pmdddl->GetChannel(); Int_t irow = pmdddl->GetRow(); Int_t icol = pmdddl->GetColumn(); Int_t isig = pmdddl->GetSignal(); if (isig>0) { d1[idet][ismn][irow][icol] = (Float_t) isig; } } pmdddlcont->Delete(); } for(Int_t idet=0; idet < kDet; idet++) { for(Int_t ismn = 0; ismn < kMaxSMN; ismn++) { for(Int_t irow = 0; irow < kMaxRow; irow++) { for(Int_t icol = 0; icol < kMaxCol; icol++) { if(d1[idet][ismn][irow][icol] > 0) { isocount = 0; for(Int_t ii = 0; ii < kCellNeighbour; ii++) { id1 = irow + neibx[ii]; jd1 = icol + neiby[ii]; if(d1[idet][ismn][id1][jd1] == 0) { isocount++; if(isocount == kCellNeighbour) { fSMIso[idet][ismn] += d1[idet][ismn][irow][icol]; fCellIso[idet][ismn][irow][icol] += d1[idet][ismn][irow][icol]; fSMCount[idet][ismn]++; fCellCount[idet][ismn][irow][icol]++; } } } // neigh cell cond. } // d>0 cond. } } } } if (numberofDDLs < kDDL) return kFALSE; return kTRUE; } // ------------------------------------------------------------------------ // void AliPMDCalibGain::Analyse(TTree *gaintree) { // Calculates the mean Int_t det, sm, row, col; Float_t gain; Float_t modmean = 0.; Float_t cellmean = 0.; gaintree->Branch("det",&det,"det/I"); gaintree->Branch("sm",&sm,"sm/I"); gaintree->Branch("row",&row,"row/I"); gaintree->Branch("col",&col,"col/I"); gaintree->Branch("gain",&gain,"gain/F"); for(Int_t idet = 0; idet < kDet; idet++) { for(Int_t ism = 0; ism < kMaxSMN; ism++) { if (fSMCount[idet][ism] > 0) modmean = fSMIso[idet][ism]/fSMCount[idet][ism]; for(Int_t irow = 0; irow < kMaxRow; irow++) { for(Int_t icol = 0; icol < kMaxCol; icol++) { if (fCellCount[idet][ism][irow][icol] > 0) cellmean = fCellIso[idet][ism][irow][icol]/fCellCount[idet][ism][irow][icol]; det = idet; sm = ism; row = irow; col = icol; gain = 1.; if(modmean > 0.0) { gain = cellmean/modmean; } gaintree->Fill(); } } } } } // ------------------------------------------------------------------------ //