X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PMD%2FAliPMDClusterFinder.cxx;h=4d9a77a140e71081a0dd6afda2b8ad74f3b11c3e;hb=bc4b0d28bac23fab26b421aa49199c0592d415c2;hp=67b5d0f0fb83a66e56580a88845ed48e76e84dda;hpb=b208c6a3c60d4eb03069305aa62ae340f857456d;p=u%2Fmrichter%2FAliRoot.git diff --git a/PMD/AliPMDClusterFinder.cxx b/PMD/AliPMDClusterFinder.cxx index 67b5d0f0fb8..4d9a77a140e 100644 --- a/PMD/AliPMDClusterFinder.cxx +++ b/PMD/AliPMDClusterFinder.cxx @@ -23,143 +23,185 @@ //-----------------------------------------------------// #include -#include -#include -#include #include -#include #include #include -#include -#include -#include +#include -#include "AliRun.h" -#include "AliPMD.h" -#include "AliDetector.h" +#include "AliLog.h" #include "AliRunLoader.h" #include "AliLoader.h" -#include "AliHeader.h" +#include "AliRawReader.h" #include "AliPMDdigit.h" #include "AliPMDClusterFinder.h" #include "AliPMDClustering.h" +#include "AliPMDClusteringV1.h" #include "AliPMDcluster.h" #include "AliPMDrecpoint1.h" +#include "AliPMDrechit.h" +#include "AliPMDRawStream.h" +#include "AliPMDCalibData.h" +#include "AliPMDPedestal.h" +#include "AliPMDddldata.h" +#include "AliPMDHotData.h" +#include "AliPMDNoiseCut.h" +#include "AliPMDddlinfoData.h" +#include "AliPMDRecoParam.h" +#include "AliRecoParam.h" +#include "AliPMDReconstructor.h" + +#include "AliDAQ.h" +#include "AliCDBManager.h" +#include "AliCDBEntry.h" + ClassImp(AliPMDClusterFinder) -AliPMDClusterFinder::AliPMDClusterFinder() +AliPMDClusterFinder::AliPMDClusterFinder(): + fRunLoader(0), + fPMDLoader(0), + fCalibGain(GetCalibGain()), + fCalibPed(GetCalibPed()), + fCalibHot(GetCalibHot()), + fNoiseCut(GetNoiseCut()), + fDdlinfo(GetDdlinfoData()), + fRecoParam(0x0), + fTreeD(0), + fTreeR(0), + fDigits(new TClonesArray("AliPMDdigit", 1000)), + fRecpoints(new TClonesArray("AliPMDrecpoint1", 1000)), + fRechits(new TClonesArray("AliPMDrechit", 1000)), + fNpoint(0), + fNhit(0), + fDetNo(0) { // -// Default Constructor +// Constructor // - if (!fRecpoints) fRecpoints = new TClonesArray("AliPMDrecpoint1", 1000); - fNpoint = 0; - - fDebug = 0; - fEcut = 0.; - } -AliPMDClusterFinder::~AliPMDClusterFinder() +// ------------------------------------------------------------------------- // +AliPMDClusterFinder::AliPMDClusterFinder(AliRunLoader* runLoader): + fRunLoader(runLoader), + fPMDLoader(runLoader->GetLoader("PMDLoader")), + fCalibGain(GetCalibGain()), + fCalibPed(GetCalibPed()), + fCalibHot(GetCalibHot()), + fNoiseCut(GetNoiseCut()), + fDdlinfo(GetDdlinfoData()), + fRecoParam(0x0), + fTreeD(0), + fTreeR(0), + fDigits(new TClonesArray("AliPMDdigit", 1000)), + fRecpoints(new TClonesArray("AliPMDrecpoint1", 1000)), + fRechits(new TClonesArray("AliPMDrechit", 1000)), + fNpoint(0), + fNhit(0), + fDetNo(0) { - // Destructor - delete fRecpoints; +// +// Constructor +// } - -void AliPMDClusterFinder::OpengAliceFile(Char_t *file, Option_t *option) +// ------------------------------------------------------------------------- // +AliPMDClusterFinder::AliPMDClusterFinder(const AliPMDClusterFinder & finder): + TObject(finder), + fRunLoader(0), + fPMDLoader(0), + fCalibGain(GetCalibGain()), + fCalibPed(GetCalibPed()), + fCalibHot(GetCalibHot()), + fNoiseCut(GetNoiseCut()), + fDdlinfo(GetDdlinfoData()), + fRecoParam(0x0), + fTreeD(0), + fTreeR(0), + fDigits(NULL), + fRecpoints(NULL), + fRechits(NULL), + fNpoint(0), + fNhit(0), + fDetNo(0) { - // Loads galice.root file and corresponding header, kinematics - // hits and sdigits or digits depending on the option - // - fRunLoader = AliRunLoader::Open(file,AliConfig::fgkDefaultEventFolderName, - "UPDATE"); - - if (!fRunLoader) - { - Error("Open","Can not open session for file %s.",file); - } - - fRunLoader->LoadgAlice(); - fRunLoader->LoadHeader(); - fRunLoader->LoadKinematics(); - - gAlice = fRunLoader->GetAliRun(); - - if (gAlice) + // copy constructor + AliError("Copy constructor not allowed"); +} +// ------------------------------------------------------------------------- // +AliPMDClusterFinder &AliPMDClusterFinder::operator=(const AliPMDClusterFinder & /*finder*/) +{ + // assignment op + AliError("Assignment Operator not allowed"); + return *this; +} +// ------------------------------------------------------------------------- // +AliPMDClusterFinder::~AliPMDClusterFinder() +{ + // Destructor + if (fDigits) { - printf(" "); - printf("AliRun object found on file.\n"); + fDigits->Clear(); } - else + if (fRecpoints) { - printf(" "); - printf("Could not find AliRun object.\n"); + fRecpoints->Clear(); } - fPMD = (AliPMD*)gAlice->GetDetector("PMD"); - fPMDLoader = fRunLoader->GetLoader("PMDLoader"); - if (fPMDLoader == 0x0) + if (fRechits) { - cerr<<"OpengAlice : Can not find PMD or PMDLoader\n"; + fRechits->Clear(); } - const char *cDR = strstr(option,"DR"); - - if (cDR) - { - fPMDLoader->LoadDigits("READ"); - fPMDLoader->LoadRecPoints("recreate"); - } } +// ------------------------------------------------------------------------- // -void AliPMDClusterFinder::Digits2RecPoints(Int_t ievt) +void AliPMDClusterFinder::Digits2RecPoints(TTree *digitsTree, + TTree *clustersTree, Int_t gRecoMode) { // Converts digits to recpoints after running clustering // algorithm on CPV plane and PREshower plane // - Int_t det = 0,smn = 0; - Int_t cellno; - Int_t xpos,ypos; - Float_t adc; - Int_t isup; - Int_t idet; - Float_t clusdata[7]; + // This algorithm is called during the reconstruction from digits + + Int_t det = 0, smn = 0; + Int_t xpos = 0, ypos = 0; + Int_t ismn = 0; + Int_t idet = 0; + Float_t adc = 0.; + Float_t clusdata[6] = {0.,0.,0.,0.,0.,0.}; + + AliPMDcluster *pmdcl = 0x0; TObjArray *pmdcont = new TObjArray(); - AliPMDcluster *pmdcl = new AliPMDcluster; - AliPMDClustering *pmdclust = new AliPMDClustering(); - pmdclust->SetDebug(fDebug); - pmdclust->SetEdepCut(fEcut); - - fRunLoader->GetEvent(ievt); - //cout << " ***** Beginning::Digits2RecPoints *****" << endl; - fTreeD = fPMDLoader->TreeD(); - if (fTreeD == 0x0) + + AliPMDClustering *pmdclust = new AliPMDClusteringV1(); + + // Fetch the reco param object + + fRecoParam = AliPMDReconstructor::GetRecoParam(); + if(fRecoParam == 0x0) { - cout << " Can not get TreeD" << endl; + AliFatal("No Reco Param found for PMD!!!"); } + + AliPMDdigit *pmddigit; - TBranch *branch = fTreeD->GetBranch("PMDDigit"); + TBranch *branch = digitsTree->GetBranch("PMDDigit"); branch->SetAddress(&fDigits); ResetRecpoint(); - fTreeR = fPMDLoader->TreeR(); - if (fTreeR == 0x0) - { - fPMDLoader->MakeTree("R"); - fTreeR = fPMDLoader->TreeR(); - } Int_t bufsize = 16000; - fTreeR->Branch("PMDRecpoint", &fRecpoints, bufsize); + TBranch * branch1 = clustersTree->Branch("PMDRecpoint", &fRecpoints, bufsize); + TBranch * branch2 = clustersTree->Branch("PMDRechit", &fRechits, bufsize); + + Int_t nmodules = (Int_t) digitsTree->GetEntries(); - Int_t nmodules = (Int_t) fTreeD->GetEntries(); - for (Int_t imodule = 0; imodule < nmodules; imodule++) { + + Int_t totADCMod = 0; ResetCellADC(); - fTreeD->GetEntry(imodule); + digitsTree->GetEntry(imodule); Int_t nentries = fDigits->GetLast(); for (Int_t ient = 0; ient < nentries+1; ient++) { @@ -167,104 +209,645 @@ void AliPMDClusterFinder::Digits2RecPoints(Int_t ievt) det = pmddigit->GetDetector(); smn = pmddigit->GetSMNumber(); - cellno = pmddigit->GetCellNumber(); + xpos = pmddigit->GetRow(); + ypos = pmddigit->GetColumn(); adc = pmddigit->GetADC(); - //Int_t trno = pmddigit->GetTrackNumber(); - xpos = cellno/fCol; - ypos = cellno - xpos*fCol; + if(det < 0 || det > 1) + { + AliError(Form("*CPV/PRE NUMBER WRONG %d *",det)); + continue; + } + if(smn == -1 || smn > 23) + { + AliError(Form("*MODULE NUMBER WRONG %d *",smn)); + continue; + } + + if(xpos < 0 || xpos > 47 || ypos < 0 || ypos > 95) + { + AliError(Form("*Row %d and Column NUMBER %d NOT Valid *", + xpos, ypos)); + continue; + } + + // Pedestal Subtraction + Int_t pedmeanrms = fCalibPed->GetPedMeanRms(det,smn,xpos,ypos); + Int_t pedrms1 = (Int_t) pedmeanrms%100; + Float_t pedrms = (Float_t)pedrms1/10.; + Float_t pedmean = (Float_t) (pedmeanrms - pedrms1)/1000.0; + //printf("%f %f\n",pedmean, pedrms); + + Float_t adc1 = adc - (pedmean + 3.0*pedrms); + + // Hot cell - set the cell adc = 0 + Float_t hotflag = fCalibHot->GetHotChannel(det,smn,xpos,ypos); + if (hotflag == 1.) adc1 = 0; + + // CALIBRATION + Float_t gain = fCalibGain->GetGainFact(det,smn,xpos,ypos); + // printf("adc = %d gain = %f\n",adc,gain); + + adc = adc1*gain; + + fCellTrack[xpos][ypos] = pmddigit->GetTrackNumber(); + fCellPid[xpos][ypos] = pmddigit->GetTrackPid(); fCellADC[xpos][ypos] = (Double_t) adc; + + totADCMod += (Int_t) adc; + } idet = det; - isup = smn; - pmdclust->DoClust(fCellADC,pmdcont); + ismn = smn; + + if (totADCMod <= 0) continue; + + // Set the minimum noise cut per module before clustering + + // Int_t imod = idet*24 + ismn; + + + // Int_t cluspar = fRecoParam->GetPbPbParam()->GetClusteringParam(); + AliPMDRecoParam * par = fRecoParam->GetPPParam(); + Int_t cluspar = par->GetClusteringParam(); + delete par; + + // Int_t cluspar = fRecoParam->GetCosmicParam()->GetClusteringParam(); + + //_______________________________________________________// + //Added to switch Refine and crude Clustering - satya// + // temporary solution - will be sorted out later + /*cluspar = 1; + static AliPMDRecoParam *reconp = NULL; + reconp = (AliPMDRecoParam*)AliPMDReconstructor::GetRecoParam(); + if(!reconp) { + cluspar = 1; + } + else { + + if( reconp->GetClusteringParam() == 1) + cluspar = 1; + if( reconp->GetClusteringParam() == 2) + cluspar = 2; + } + + */ + cluspar = gRecoMode; + //_______________________________________________________// + + pmdclust->SetClusteringParam(cluspar); + + Float_t encut = 4.; + pmdclust->SetEdepCut(encut); + pmdclust->DoClust(idet,ismn,fCellTrack,fCellPid,fCellADC,pmdcont); Int_t nentries1 = pmdcont->GetEntries(); - cout << " nentries1 = " << nentries1 << endl; + + AliDebug(1,Form("Total number of clusters/module = %d",nentries1)); + for (Int_t ient1 = 0; ient1 < nentries1; ient1++) { - clusdata[0] = (Float_t) idet; - clusdata[1] = (Float_t) isup; - pmdcl = (AliPMDcluster*)pmdcont->UncheckedAt(ient1); - - clusdata[2] = pmdcl->GetClusX(); - clusdata[3] = pmdcl->GetClusY(); - clusdata[4] = pmdcl->GetClusADC(); - clusdata[5] = pmdcl->GetClusCells(); - clusdata[6] = pmdcl->GetClusRadius(); - - AddRecPoint(clusdata); + idet = pmdcl->GetDetector(); + ismn = pmdcl->GetSMN(); + clusdata[0] = pmdcl->GetClusX(); + clusdata[1] = pmdcl->GetClusY(); + clusdata[2] = pmdcl->GetClusADC(); + clusdata[3] = pmdcl->GetClusCells(); + clusdata[4] = pmdcl->GetClusSigmaX(); + clusdata[5] = pmdcl->GetClusSigmaY(); + + AddRecPoint(idet,ismn,clusdata); + + Int_t ncell = (Int_t) clusdata[3]; + if (ncell > 19) ncell = 19; + for(Int_t ihit = 0; ihit < ncell; ihit++) + { + Int_t celldataX = pmdcl->GetClusCellX(ihit); + Int_t celldataY = pmdcl->GetClusCellY(ihit); + Int_t celldataTr = pmdcl->GetClusCellTrack(ihit); + Int_t celldataPid = pmdcl->GetClusCellPid(ihit); + Float_t celldataAdc = pmdcl->GetClusCellAdc(ihit); + AddRecHit(celldataX, celldataY, celldataTr, celldataPid, celldataAdc); + } + branch2->Fill(); + ResetRechit(); } - pmdcont->Clear(); - - fTreeR->Fill(); + pmdcont->Delete(); + + branch1->Fill(); ResetRecpoint(); } // modules + ResetCellADC(); - - fPMDLoader->WriteRecPoints("OVERWRITE"); // delete the pointers delete pmdclust; delete pmdcont; - - // cout << " ***** End::Digits2RecPoints *****" << endl; } +// ------------------------------------------------------------------------- // -void AliPMDClusterFinder::SetCellEdepCut(Float_t ecut) -{ - fEcut = ecut; -} -void AliPMDClusterFinder::SetDebug(Int_t idebug) +void AliPMDClusterFinder::Digits2RecPoints(AliRawReader *rawReader, + TTree *clustersTree, Int_t gRecoMode) { - fDebug = idebug; -} + // Converts RAW data to recpoints after running clustering + // algorithm on CPV and PREshower plane + // + // This method is called at the time of reconstruction from RAW data + + + AliPMDddldata *pmdddl = 0x0; + AliPMDcluster *pmdcl = 0x0; + + Float_t clusdata[6]; + TObjArray pmdddlcont; + + TObjArray *pmdcont = new TObjArray(); + + AliPMDClustering *pmdclust = new AliPMDClusteringV1(); + + // access the ddlinfo database to fetch the no of modules per DDL + + Int_t moduleddl[6] = {0,0,0,0,0,0}; + + for(Int_t jddl = 0; jddl < 6; jddl++) + { + moduleddl[jddl] = fDdlinfo->GetNoOfModulePerDdl(jddl); + } + + // Set the minimum noise cut per module before clustering + + fRecoParam = AliPMDReconstructor::GetRecoParam(); + + if(fRecoParam == 0x0) + { + AliFatal("No Reco Param found for PMD!!!"); + } + + ResetRecpoint(); + + Int_t bufsize = 16000; + TBranch *branch1 = clustersTree->Branch("PMDRecpoint", &fRecpoints, bufsize); + + TBranch * branch2 = clustersTree->Branch("PMDRechit", &fRechits, bufsize); + + const Int_t kRow = 48; + const Int_t kCol = 96; + + Int_t idet = 0; + Int_t iSMN = 0; + + Int_t indexDDL = -1; + AliPMDRawStream pmdinput(rawReader); + + while ((indexDDL = pmdinput.DdlData(&pmdddlcont)) >=0) + { + iSMN = moduleddl[indexDDL]; + + Int_t ***precpvADC; + precpvADC = new int **[iSMN]; + for (Int_t i=0; iGetDetector(); + Int_t smn = pmdddl->GetSMN(); + //Int_t mcm = pmdddl->GetMCM(); + //Int_t chno = pmdddl->GetChannel(); + Int_t row = pmdddl->GetRow(); + Int_t col = pmdddl->GetColumn(); + Int_t sig = pmdddl->GetSignal(); + + + if(det < 0 || det > 1) + { + AliError(Form("*CPV/PRE NUMBER WRONG %d *",det)); + continue; + } + if(smn < 0 || smn > 23) + { + AliError(Form("*MODULE NUMBER WRONG %d *",smn)); + continue; + } + if(row < 0 || row > 47 || col < 0 || col > 95) + { + AliError(Form("*Row %d and Column NUMBER %d NOT Valid *", + row, col)); + + continue; + } + + // Pedestal Subtraction + Int_t pedmeanrms = fCalibPed->GetPedMeanRms(det,smn,row,col); + Int_t pedrms1 = (Int_t) pedmeanrms%100; + Float_t pedrms = (Float_t)pedrms1/10.; + Float_t pedmean = (Float_t) (pedmeanrms - pedrms1)/1000.0; + + //printf("%f %f\n",pedmean, pedrms); + + // Float_t sig1 = (Float_t) sig; + Float_t sig1 = (Float_t) sig - (pedmean + 3.0*pedrms); + + // Hot cell - set the cell adc = 0 + Float_t hotflag = fCalibHot->GetHotChannel(det,smn,row,col); + if (hotflag == 1.) sig1 = 0; + + // CALIBRATION + Float_t gain = fCalibGain->GetGainFact(det,smn,row,col); + //printf("sig = %d gain = %f\n",sig,gain); + sig = (Int_t) (sig1*gain); + + if (indexDDL == 0) + { + if (det != 0) + AliError(Form("*DDL %d and Detector NUMBER %d NOT MATCHING *", + indexDDL, det)); + if (iSMN == 6) + { + indexsmn = smn; + } + else if (iSMN == 12) + { + if (smn < 6) + indexsmn = smn; + else if (smn >= 18 && smn < 24) + indexsmn = smn-12; + } + } + else if (indexDDL >= 1 && indexDDL < 4) + { + if (det != 0) + AliError(Form("*DDL %d and Detector NUMBER %d NOT MATCHING *", + indexDDL, det)); + indexsmn = smn - indexDDL * 6; + } + else if (indexDDL == 4) + { + if (det != 1) + AliError(Form("*DDL %d and Detector NUMBER %d NOT MATCHING *", + indexDDL, det)); + if (smn < 6) + { + indexsmn = smn; + } + else if (smn >= 18 && smn < 24) + { + indexsmn = smn - 12; + } + } + else if (indexDDL == 5) + { + if (det != 1) + AliError(Form("*DDL %d and Detector NUMBER %d NOT MATCHING *", + indexDDL, det)); + if (smn >= 6 && smn < 18) + { + indexsmn = smn - 6; + } + } + + precpvADC[indexsmn][row][col] = sig; + } + + pmdddlcont.Delete(); + + Int_t totAdcMod = 0; + + Int_t ismn = 0; + for (indexsmn = 0; indexsmn < iSMN; indexsmn++) + { + ResetCellADC(); + totAdcMod = 0; + for (Int_t irow = 0; irow < kRow; irow++) + { + for (Int_t icol = 0; icol < kCol; icol++) + { + fCellTrack[irow][icol] = -1; + fCellPid[irow][icol] = -1; + + fCellADC[irow][icol] = + (Double_t) precpvADC[indexsmn][irow][icol]; + totAdcMod += precpvADC[indexsmn][irow][icol]; + } // row + } // col + + if (indexDDL == 0) + { + if (iSMN == 6) + { + ismn = indexsmn; + } + else if (iSMN == 12) + { + + if (indexsmn < 6) + ismn = indexsmn; + else if (indexsmn >= 6 && indexsmn < 12) + ismn = indexsmn + 12; + } + idet = 0; + } + else if (indexDDL >= 1 && indexDDL < 4) + { + ismn = indexsmn + indexDDL * 6; + idet = 0; + } + else if (indexDDL == 4) + { + if (indexsmn < 6) + { + ismn = indexsmn; + } + else if (indexsmn >= 6 && indexsmn < 12) + { + ismn = indexsmn + 12; + } + idet = 1; + } + else if (indexDDL == 5) + { + ismn = indexsmn + 6; + idet = 1; + } + + if (totAdcMod <= 0) continue; + + Int_t imod = idet*24 + ismn; + + // Int_t cluspar = fRecoParam->GetPbPbParam()->GetClusteringParam(); + AliPMDRecoParam * par = fRecoParam->GetPPParam(); + Int_t cluspar = par->GetClusteringParam(); + delete par; + // Int_t cluspar = fRecoParam->GetCosmicParam()->GetClusteringParam(); + + //_______________________________________________________// + //Added to switch Refine and crude Clustering - satya// + // temporary solution - will be sorted out later + /* cluspar = 1; + static AliPMDRecoParam *reconp = NULL; + reconp = (AliPMDRecoParam*)AliPMDReconstructor::GetRecoParam(); + if(!reconp) { + cluspar = 1; + } + else { + if( reconp->GetClusteringParam() == 1) + cluspar = 1; + if( reconp->GetClusteringParam() == 2) + cluspar = 2; + }*/ + + + cluspar = gRecoMode; // permanent solution + + //_______________________________________________________// + + pmdclust->SetClusteringParam(cluspar); + Float_t encut = fNoiseCut->GetNoiseCut(imod); + + pmdclust->SetEdepCut(encut); + pmdclust->DoClust(idet,ismn,fCellTrack,fCellPid,fCellADC,pmdcont); + + Int_t nentries1 = pmdcont->GetEntries(); + + AliDebug(1,Form("Total number of clusters/module = %d",nentries1)); + + for (Int_t ient1 = 0; ient1 < nentries1; ient1++) + { + pmdcl = (AliPMDcluster*)pmdcont->UncheckedAt(ient1); + idet = pmdcl->GetDetector(); + ismn = pmdcl->GetSMN(); + clusdata[0] = pmdcl->GetClusX(); + clusdata[1] = pmdcl->GetClusY(); + clusdata[2] = pmdcl->GetClusADC(); + clusdata[3] = pmdcl->GetClusCells(); + clusdata[4] = pmdcl->GetClusSigmaX(); + clusdata[5] = pmdcl->GetClusSigmaY(); + + AddRecPoint(idet,ismn,clusdata); + + Int_t ncell = (Int_t) clusdata[3]; + if (ncell > 19) ncell = 19; + for(Int_t ihit = 0; ihit < ncell; ihit++) + { + Int_t celldataX = pmdcl->GetClusCellX(ihit); + Int_t celldataY = pmdcl->GetClusCellY(ihit); + Int_t celldataTr = pmdcl->GetClusCellTrack(ihit); + Int_t celldataPid = pmdcl->GetClusCellPid(ihit); + Float_t celldataAdc = pmdcl->GetClusCellAdc(ihit); + AddRecHit(celldataX, celldataY, celldataTr, celldataPid, celldataAdc); + } + branch2->Fill(); + ResetRechit(); + + } + pmdcont->Delete(); + + branch1->Fill(); + ResetRecpoint(); + + + } // smn + + for (Int_t i=0; iClear(); } -void AliPMDClusterFinder::UnLoad(Option_t *option) +// ------------------------------------------------------------------------- // +void AliPMDClusterFinder::ResetRechit() +{ + // Clear the list of reconstructed points + fNhit = 0; + if (fRechits) fRechits->Clear(); +} +// ------------------------------------------------------------------------- // +void AliPMDClusterFinder::Load() +{ + // Load all the *.root files + // + fPMDLoader->LoadDigits("READ"); + fPMDLoader->LoadRecPoints("recreate"); +} +// ------------------------------------------------------------------------- // +void AliPMDClusterFinder::LoadClusters() +{ + // Load all the *.root files + // + fPMDLoader->LoadRecPoints("recreate"); +} +// ------------------------------------------------------------------------- // +void AliPMDClusterFinder::UnLoad() { // Unload all the *.root files // - const char *cR = strstr(option,"R"); - - fRunLoader->UnloadgAlice(); - fRunLoader->UnloadHeader(); - fRunLoader->UnloadKinematics(); - - if (cR) - { - fPMDLoader->UnloadDigits(); - } + fPMDLoader->UnloadDigits(); + fPMDLoader->UnloadRecPoints(); +} +// ------------------------------------------------------------------------- // +void AliPMDClusterFinder::UnLoadClusters() +{ + // Unload all the *.root files + // + fPMDLoader->UnloadRecPoints(); +} +// ------------------------------------------------------------------------- // +AliPMDCalibData* AliPMDClusterFinder::GetCalibGain() const +{ + // The run number will be centralized in AliCDBManager, + // you don't need to set it here! + // Added by ZA + AliCDBEntry *entry = AliCDBManager::Instance()->Get("PMD/Calib/Gain"); + + if(!entry) AliFatal("Calibration object retrieval failed! "); + + AliPMDCalibData *calibdata=0; + if (entry) calibdata = (AliPMDCalibData*) entry->GetObject(); + + if (!calibdata) AliFatal("No calibration data from calibration database !"); + + return calibdata; } +// ------------------------------------------------------------------------- // +AliPMDPedestal* AliPMDClusterFinder::GetCalibPed() const +{ + // The run number will be centralized in AliCDBManager, + // you don't need to set it here! + AliCDBEntry *entry = AliCDBManager::Instance()->Get("PMD/Calib/Ped"); + + if(!entry) AliFatal("Pedestal object retrieval failed!"); + + AliPMDPedestal *pedestal = 0; + if (entry) pedestal = (AliPMDPedestal*) entry->GetObject(); + + if (!pedestal) AliFatal("No pedestal data from pedestal database !"); + + return pedestal; +} +//--------------------------------------------------------------------// +AliPMDHotData* AliPMDClusterFinder::GetCalibHot() const +{ + // The run number will be centralized in AliCDBManager, + // you don't need to set it here! + AliCDBEntry *entry = AliCDBManager::Instance()->Get("PMD/Calib/Hot"); + + if(!entry) AliFatal("HotData object retrieval failed!"); + + AliPMDHotData *hot = 0; + if (entry) hot = (AliPMDHotData*) entry->GetObject(); + + if (!hot) AliFatal("No hot data from database !"); + + return hot; +} +//--------------------------------------------------------------------// +AliPMDNoiseCut* AliPMDClusterFinder::GetNoiseCut() const +{ + // The run number will be centralized in AliCDBManager, + // you don't need to set it here! + AliCDBEntry *entry = AliCDBManager::Instance()->Get("PMD/Calib/NoiseCut"); + + if(!entry) AliFatal("Noisecut object retrieval failed!"); + + AliPMDNoiseCut *ncut = 0; + if (entry) ncut = (AliPMDNoiseCut*) entry->GetObject(); + + if (!ncut) AliFatal("No noise cut data from database !"); + + return ncut; +} +//--------------------------------------------------------------------// +AliPMDddlinfoData* AliPMDClusterFinder::GetDdlinfoData() const +{ + // The run number will be centralized in AliCDBManager, + // you don't need to set it here! + AliCDBEntry *entry = AliCDBManager::Instance()->Get("PMD/Calib/Ddlinfo"); + + if(!entry) AliFatal("ddlinfo object retrieval failed!"); + + AliPMDddlinfoData *ddlinfo = 0; + if (entry) ddlinfo = (AliPMDddlinfoData*) entry->GetObject(); + + if (!ddlinfo) AliFatal("No ddl info data from database !"); + + return ddlinfo; +} +