// ************************************************************************** // * 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 "AliHMPIDCalib.h" //class header #include "AliHMPIDParam.h" //class header #include "AliHMPIDRawStream.h" //class header #include "AliHMPIDDigit.h" //class header #include #include #include #include ClassImp(AliHMPIDCalib) //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ AliHMPIDCalib::AliHMPIDCalib(): faddl(0x0), fsq(0x0), fsq2(0x0), fnpc(0x0), fpedQ0(0x0), fErr(0x0), fPadAdc(0x0), fIsPad(0x0), fFile(0x0), fLdcId(0), fTimeStamp(0), fRunNum(0), fSigCut(0), fWritePads(0), fnDDLInStream(0x0), fnDDLOutStream(0x0), fLargeHisto(kFALSE), fSelectDDL(0) { // //constructor // faddl = new Bool_t[AliHMPIDRawStream::kNDDL]; Int_t nPads = (AliHMPIDParam::kMaxCh+1)*(AliHMPIDParam::kMaxPcx+1)*(AliHMPIDParam::kMaxPcy+1); fpedQ0 = new Int_t***[AliHMPIDRawStream::kNDDL+1]; fsq2 = new Float_t ***[AliHMPIDRawStream::kNDDL+1]; fsq = new Float_t ***[AliHMPIDRawStream::kNDDL+1]; fnpc = new Int_t ***[AliHMPIDRawStream::kNDDL+1]; fErr = new Int_t*[AliHMPIDRawStream::kNDDL+1]; fnDDLInStream = new Int_t[AliHMPIDRawStream::kNDDL+1]; fnDDLOutStream = new Int_t[AliHMPIDRawStream::kNDDL+1]; for(Int_t iDDL=0;iDDL>nSigCut; } infile.close(); if(nSigCut< 0 || nSigCut > 15 ) {Printf("WARNING: DAQ Sigma Cut from DAQ DB is out of bounds: %d, resetting it to 3!!!",nSigCut);nSigCut=3;} Printf("DAQ Sigma Cut from DAQ DB is: %d",nSigCut); fSigCut=nSigCut; }//SetSigCutFromFile() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void AliHMPIDCalib::InitHisto(Int_t q,Int_t histocnt,Char_t* name) { // //Init the pad histos. For one DDL we have 11520 pads. ONLY if ENABLED! //Arguments: q-charge, the absolute number of the histogram (AliHMPIDParam::kMaxCh+1)*(AliHMPIDParam::kMaxPcx+1)*(AliHMPIDParam::kMaxPcy+1) and the name of the histogram (unique) //Returns: none // if(fWritePads==kFALSE) return; fFile->cd(); Double_t lowbin,highbin=0; lowbin=q-40.5; highbin=q+40.5; if(fIsPad[histocnt]==kTRUE) return; if(fLargeHisto==kFALSE) fPadAdc[histocnt]=new TH1I(name,name,81,lowbin,highbin); if(fLargeHisto==kTRUE) fPadAdc[histocnt]=new TH1I(name,name,4093,-0.5,4092.5); fPadAdc[histocnt]->Sumw2(); fIsPad[histocnt]=kTRUE; }//InitHisto() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void AliHMPIDCalib::FillHisto(Int_t histocnt,Int_t q) { // //Fill the ADC histograms for each pad //Arguments: q-charge, the absolute number of the histogram (AliHMPIDParam::kMaxCh+1)*(AliHMPIDParam::kMaxPcx+1)*(AliHMPIDParam::kMaxPcy+1) //Returns: none // if(fIsPad[histocnt]==kFALSE) return; fFile->cd(); fPadAdc[histocnt]->Fill(q); }//InitHisto() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void AliHMPIDCalib::InitFile(Int_t inVal) { // //Initialize the ADC histo output file (one per LDC) //Arguments: LDC Id //Returns: none // if(fWritePads==kFALSE ) return; if(fLargeHisto==kFALSE) fFile=new TFile(Form("HmpidPadsOnLdc%2d.root",inVal),"RECREATE"); if(fLargeHisto==kTRUE) fFile=new TFile(Form("Run%d_DDL%d.root",inVal,fSelectDDL),"RECREATE"); }//InitFile() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void AliHMPIDCalib::CloseFile() { // //Close the ADC histo output file (one per LDC) //Arguments: LDC Id //Returns: none // fFile->cd(); Int_t nPads = (AliHMPIDParam::kMaxCh+1)*(AliHMPIDParam::kMaxPcx+1)*(AliHMPIDParam::kMaxPcy+1); for(Int_t np=0;npWrite();} fFile->Close(); }//CloseFile() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void AliHMPIDCalib::FillPedestal(Int_t abspad,Int_t q) { // //Called from the HMPIDda and fills the pedestal values //Arguments: absolute pad number as from AliHMPIDParam and q-charge //Returns: none // if(q<0) { AliError("Negative charge is read!!!!!!"); return; } UInt_t w32; Int_t nDDL=0, row=0, dil=0, adr=0; //The decoding (abs. pad -> ddl,dil,...) is the same as in AliHMPIDDigit::Raw AliHMPIDDigit dig(abspad,q); dig.Raw(w32,nDDL,row,dil,adr); //........... decoding done if(q>0) { fsq[nDDL][row][dil][adr]+=q; fsq2[nDDL][row][dil][adr]+=q*q; fnpc[nDDL][row][dil][adr]++; //Count how many times the pad is good (can be different from the good DDL count) faddl[nDDL]=kTRUE; } else { fpedQ0[nDDL][row][dil][adr]++; //Count how many times a pad charge is zero } Int_t histocnt=0; histocnt=(nDDL)*11520+(row-1)*480+(dil-1)*48+adr; //Histo counter for a single DDL if(fWritePads==kTRUE) //works but make it nicer later.... { if( fLargeHisto==kTRUE && nDDL==fSelectDDL) { InitHisto(q,histocnt,Form("hDDL_%d_Row_%d_Dil_%d_Pad_%d",nDDL,row,dil,adr)); //for large histos use hardware naming FillHisto(histocnt,q); } if(fLargeHisto==kFALSE) { InitHisto(q,histocnt,Form("hPad_Ch_%d_Pc_%d_Px_%d_Py_%d",AliHMPIDParam::A2C(abspad),AliHMPIDParam::A2P(abspad),AliHMPIDParam::A2X(abspad),AliHMPIDParam::A2Y(abspad))); FillHisto(histocnt,q); } }//fWritePads }//FillPedestal() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void AliHMPIDCalib::FillErrors(Int_t nDDL,Int_t eType, Int_t nErr) { // //Fill decoding errors from AliHMPIDRawStream //Arguments: nDDL-DDL number, eType- error type as in AliHMPIDRawStream.h and the # of occurence for eType //Retutns: none // if(nErr<=0) return; if(eType < 0 || eType> AliHMPIDRawStream::kSumErr ) return; fErr[nDDL][eType]=fErr[nDDL][eType]+nErr; }//FillErrors() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ void AliHMPIDCalib::FillDDLCnt(Int_t iddl,Int_t inDDL, Int_t outDDL) { // //Fill decoding DDL check from RawStream //Arguments: iddl - DDL under setting, inDDL- How many times the DDL is present in the raw stream, outDDL - How many time sthe DDL is succesfylly decoded //Retutns: none // if(inDDL==-1) return; if(fnDDLInStream[iddl]==-1) {fnDDLInStream[iddl]=0; fnDDLOutStream[iddl]=0;} fnDDLInStream[iddl]+=inDDL; fnDDLOutStream[iddl]+=outDDL; }//FillDDLCnt() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Bool_t AliHMPIDCalib::WriteErrors(Int_t nDDL, Char_t* name, Int_t nEv) { // //Write decoding errors to a txt file //Arguments: nDDL-DDL number, name of the error file and number of the read events //Retutns: kTRUE/kFALSE // if(faddl[nDDL]==kFALSE) return kFALSE; //if ddl is missing no error file is created ofstream outerr; outerr.open(name); //open error file outerr << Form("%8s %2d\n","RunNumber",(Int_t)fRunNum); //read run number outerr << Form("%8s %2d\n","LdcId" , fLdcId); //read LDC Id outerr << Form("%8s %2d\n","TimeStamp", fTimeStamp); //read time stamp outerr << Form("%8s %2d\n","TotNumEvt", nEv); //read number of total events processed outerr << Form("%8s %2d\n","TotDDLEvt", fnDDLInStream[nDDL]); //read number of bad events for DDL # nDDL processed outerr << Form("%8s %2d\n","NumBadEvt", fnDDLInStream[nDDL]-fnDDLOutStream[nDDL]); //read number of bad events for DDL # nDDL processed outerr << Form("%8s %2.2f\n","NBadE(%)", (fnDDLInStream[nDDL]-fnDDLOutStream[nDDL])*100.0/nEv); //read number of bad events (in %) for DDL # nDDL processed for(Int_t ierr=0; ierr 0) outerr<< Form("%2d %2d %2d %3d\n",row,dil,pad,fpedQ0[nDDL][row][dil][pad]); } } } outerr.close(); //write error file return kTRUE; }//FillErrors() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Bool_t AliHMPIDCalib::CalcPedestal(Int_t nDDL, Char_t* name, Char_t *name2,Int_t nEv) { // //Calculate pedestal for each pad //Arguments: nDDL-DDL number, name of the pedestal file and number of the read events //Retutns: kTRUE/kFALSE // if(faddl[nDDL]==kFALSE) return kFALSE; //if ddl is missing no ped file is created (and also for LDC selection). Check with Paolo what he checks for?! Int_t feeOffset=196657; ofstream feeInput; feeInput.open(Form("%s",name2)); //write thr file for Fe2C Double_t mean=0,sigma=0; Double_t qs2m=0,qsm2=0; ofstream out; //to write the pedestal text files Int_t inhard; Int_t nEvPerPad=0; out.open(name); out << Form("%8s %2d\n","RunNumber",(Int_t)fRunNum); //read run number out << Form("%8s %2d\n","LdcId" , fLdcId); //read LDC Id out << Form("%8s %2d\n","TimeStamp", fTimeStamp); //read time stamp out << Form("%8s %2d\n","TotNumEvt", nEv); //read number of total events processed out << Form("%8s %2d\n","TotDDLEvt", fnDDLInStream[nDDL]); //read number of bad events for DDL # nDDL processed out << Form("%8s %2d\n","NumBadEvt", fnDDLInStream[nDDL]-fnDDLOutStream[nDDL]); //read number of bad events for DDL # nDDL processed out << Form("%8s %2f\n","NBadE(%)", (fnDDLInStream[nDDL]-fnDDLOutStream[nDDL])*100.0/nEv); //read number of bad events (in %) for DDL # nDDL processed out << Form("%8s %d\n","#SigCut", fSigCut); //# of sigma cuts for(Int_t row = 1; row <= AliHMPIDRawStream::kNRows; row++){ feeInput << Form("0xabcdabcd \n"); //before each row we write a marker to separate the rows within a DDL for(Int_t dil = 1; dil <= AliHMPIDRawStream::kNDILOGICAdd; dil++){ for(Int_t pad = 0; pad < AliHMPIDRawStream::kNPadAdd; pad++){ mean = 50;sigma = 100; nEvPerPad=fnpc[nDDL][row][dil][pad]; if(nEvPerPad < 1 ) { //if the pad is bad then we assign 100 for the sigma and 50 for the mean mean = 4000; sigma = 1000; } else{ mean = fsq[nDDL][row][dil][pad]*1.0/nEvPerPad; qs2m = fsq2[nDDL][row][dil][pad]*1.0/nEvPerPad; qsm2 = TMath::Power(fsq[nDDL][row][dil][pad]*1.0/nEvPerPad,2); sigma = TMath::Sqrt(TMath::Abs(qs2m-qsm2)); } inhard=((Int_t(mean+fSigCut*sigma))<<9)+Int_t(mean); //right calculation, xchecked with Paolo 8/4/2008 out << Form("%2i %2i %2i %5.3f %5.3f %4.4x \n",row,dil,pad,mean,sigma,inhard); feeInput << Form("0x%4.4x\n",inhard); //if(sigma > 3.0) Printf("WARNING SIGMA DDL: %2d row: %2d dil: %2d pad: %2d mean: %3.2f sigma: %2.2f nEvPerPad: %02d fnDDLOutStream: %02d fpedQ0: %02d",nDDL,row,dil,pad,mean,sigma,nEvPerPad,fnDDLOutStream[nDDL],fpedQ0[nDDL][row][dil][pad]); }//adr //we have to write up to 64 not 48 in the DILOGIC since they are daisy chained! //offset and format is defined for the Fe2C code for(Int_t idd=0;idd<16;idd++) feeInput << Form("0x%4.4x\n",idd+feeOffset); }//dil }//row out.close(); //write pedestal file feeInput.close(); return kTRUE; }//CaclPedestal() //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Bool_t AliHMPIDCalib::CalcPedestalPaolo(Int_t nDDL, Char_t* /*name*/, Int_t nEv) { // //Calculate pedestal for each pad //Arguments: nDDL-DDL number, name of the pedestal file and number of the read events //Retutns: kTRUE/kFALSE // //----------------- write files in the format of Paolo ----------------------- if(faddl[nDDL]==kFALSE) return kFALSE; //if ddl is missing no ped file is created (and also for LDC selection). Check with Paolo what he checks for?! Int_t ddlOffset=1536; Int_t cnt=0; Double_t mean1=0,sigma1=0; Double_t qs2m1=0,qsm21=0; Double_t mean2=0,sigma2=0; Double_t qs2m2=0,qsm22=0; Int_t nEvPerPad1=0; Int_t nEvPerPad2=0; ofstream pped[3]; for(Int_t iseg=1;iseg<4;iseg++) pped[iseg-1].open(Form("HmpidPed%d_%d.dat",nDDL+ddlOffset,iseg)); for(Int_t row = 1; row <= AliHMPIDRawStream::kNRows/2; row++){ //write header pped[(row-1)/4]<