]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDPreprocessor.cxx
Protection on fit procedures if not enogh points from DCS (L.M.)
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDPreprocessor.cxx
1 #include "AliHMPIDPreprocessor.h" //header no includes
2 #include "AliHMPIDDigit.h"        //ProcPed()
3 #include <Riostream.h>            //ProcPed()  
4 #include <AliCDBMetaData.h>       //ProcPed(), ProcDcs()
5 #include <AliDCSValue.h>          //ProcDcs()
6 #include <TObjString.h>           //ProcDcs(), ProcPed()
7 #include <TF1.h>                  //Process()
8 #include <TF2.h>                  //Process()
9 #include <TGraph.h>               //Process()
10 #include <TMatrix.h>              //ProcPed()
11 #include <TList.h>                //ProcPed()
12 #include <TSystem.h>              //ProcPed()
13 //.
14 // HMPID Preprocessor base class
15 //.
16 //.
17 //.
18 ClassImp(AliHMPIDPreprocessor)
19
20 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
21 void AliHMPIDPreprocessor::Initialize(Int_t run, UInt_t startTime,UInt_t endTime)
22 {
23   AliPreprocessor::Initialize(run, startTime, endTime);
24 }
25 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
26 UInt_t AliHMPIDPreprocessor::Process(TMap* pMap)
27 {
28 // Process all information from DCS and DAQ
29 // Arguments: pMap- map of DCS aliases
30 //   Returns: 0 on success or 1 on error    
31   if(! pMap)                     return 1; 
32   if(ProcDcs(pMap) && ProcPed()) return 0;
33   else                           return 1;     
34 }//Process()
35 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
36 Bool_t AliHMPIDPreprocessor::ProcDcs(TMap* pMap)
37 {
38 // Process: 1. inlet and outlet C6F14 temperature, stores TObjArray of 21 TF1, where TF1 is Nmean=f(t), one per radiator
39 //          2. CH4 pressure and HV                 stores TObjArray of 7 TF1 where TF1 is thr=f(t), one per chamber
40 // Arguments: pDcsMap - map of structure "alias name" - TObjArray of AliDCSValue
41 // Assume that: HV is the same during the run for a given chamber, different chambers might have different HV
42 //              P=f(t), different for different chambers
43 // Returns: kTRUE on success  
44
45   TF2 idx("RidxC4F14","sqrt(1+0.554*(1239.84/x)^2/((1239.84/x)^2-5796)-0.0005*(y-20))",5.5 ,8.5 ,0  ,50);  //N=f(Ephot,T) [eV,grad C] DiMauro mail
46   
47 // Qthr=f(HV,P) [V,mBar]  logA0=k*HV+b is taken from p. 64 TDR plot 2.59 for PC32 
48 //                           A0=f(P) is taken from DiMauro mail
49 // Qthr is estimated as 3*A0
50   TF2 thr("RthrCH4"  ,"3*10^(3.01e-3*x-4.72)+170745848*exp(-y*0.0162012)"             ,2000,3000,900,1200); 
51   
52   TObjArray arTmean(21); arTmean.SetOwner(kTRUE);     //21 Tmean=f(time) one per radiator
53   TObjArray arPress(7);  arPress.SetOwner(kTRUE);     //7  Press=f(time) one pre chamber
54   TObjArray arNmean(21); arNmean.SetOwner(kTRUE);     //21 Nmean=f(time) one per radiator
55   TObjArray arQthre(7);  arQthre.SetOwner(kTRUE);     //7  Qthre=f(time) one pre chamber
56   
57   AliDCSValue *pVal; Int_t cnt=0;
58     
59   for(Int_t iCh=0;iCh<7;iCh++){                   
60 //    TObjArray *pHV=(TObjArray*)pMap->GetValue(Form("HMP_DET/HMP_MP%i/HMP_MP%i_PW/HMP_MP%i_SEC0/HMP_MP%i_SEC0_HV.actual.vMon",iCh,iCh,iCh,iCh)); //HV
61     TObjArray *pP =(TObjArray*)pMap->GetValue(Form("HMP_DET/HMP_MP%i/HMP_MP%i_GAS/HMP_MP%i_GAS_PMWC.actual.value"           ,iCh,iCh,iCh));    TIter nextP(pP);
62     TGraph *pGrP=new TGraph; cnt=0; 
63     while((pVal=(AliDCSValue*)nextP())) pGrP->SetPoint(cnt++,pVal->GetTimeStamp(),pVal->GetFloat());            //P
64     if( cnt!=0) pGrP->Fit(new TF1(Form("P%i",iCh),"1005+x*[0]",fStartTime,fEndTime),"Q");                       //clm: if no DCS map entry don't fit
65     delete pGrP;   
66     
67     arQthre.AddAt(new TF1(Form("HMP_Qthre%i",iCh),"100",fStartTime,fEndTime),iCh);    
68     
69     for(Int_t iRad=0;iRad<3;iRad++){
70       TObjArray *pT1=(TObjArray*)pMap->GetValue(Form("HMP_DET/HMP_MP%i/HMP_MP%i_LIQ_LOOP.actual.sensors.Rad%iIn_Temp",iCh,iCh,iRad));  TIter nextT1(pT1);//Tin
71       TObjArray *pT2=(TObjArray*)pMap->GetValue(Form("HMP_DET/HMP_MP%i/HMP_MP%i_LIQ_LOOP.actual.sensors.Rad%iOut_Temp",iCh,iCh,iRad)); TIter nextT2(pT2);//Tout      
72       
73       TGraph *pGrT1=new TGraph; cnt=0;  while((pVal=(AliDCSValue*)nextT1())) pGrT1->SetPoint(cnt++,pVal->GetTimeStamp(),pVal->GetFloat()); //T inlet
74       if(cnt!=0) pGrT1->Fit(new TF1(Form("Tin%i%i",iCh,iRad),"[0]+[1]*x+[2]*sin([3]*x)",fStartTime,fEndTime),"Q");       //fit Tin graph -- clm: if DCS entry
75       
76       TGraph *pGrT2=new TGraph; cnt=0;  while((pVal=(AliDCSValue*)nextT2())) pGrT2->SetPoint(cnt++,pVal->GetTimeStamp(),pVal->GetFloat()); //T outlet 
77       if(cnt!=0) pGrT2->Fit(new TF1(Form("Tou%i%i",iCh,iRad),"[0]+[1]*x+[2]*sin([3]*x)",fStartTime,fEndTime),"Q");       //fit Tout graph -- clm: if DCS entry
78             
79       delete pGrT1;  delete pGrT2;
80         
81             
82 //      arTmean.Add(pRadTempF);  
83       arNmean.AddAt(new TF1(Form("HMP_Nmean%i-%i",iCh,iRad),"1.292",fStartTime,fEndTime),3*iCh+iRad); //Nmean=f(t)
84     }//radiators loop
85   }//chambers loop
86   
87   AliCDBMetaData metaData; metaData.SetBeamPeriod(0); metaData.SetResponsible("AliHMPIDPreprocessor"); metaData.SetComment("SIMULATED");
88   
89 //  Store("Calib", "Press" , &arPress , &metaData)  Store("Calib", "Tmean" , &arTmean , &metaData);
90   
91   if(Store("Calib","Qthre",&arQthre,&metaData,0,kTRUE) && Store("Calib","Nmean",&arNmean,&metaData,0,kTRUE) ) return kTRUE; //all OK
92   else                                                                                                        return 1;
93 }//Process()
94 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
95 Bool_t AliHMPIDPreprocessor::ProcPed()
96 {
97 // Process pedestal files and create 7 M(padx,pady)=sigma, one for each chamber
98 // Arguments:
99 //   Returns:    
100   TObjArray aDaqSig(7); aDaqSig.SetOwner(kTRUE); for(Int_t i=0;i<7;i++) aDaqSig.AddAt(new TMatrix(160,144),i); //TObjArray of 7 TMatrixF, m(padx,pady)=sigma
101   
102   TList *pLdc=GetFileSources(kDAQ,"pedestals"); //get list of LDC names containing id "pedestals"
103   for(Int_t i=0;i<pLdc->GetEntries();i++)//lists of LDCs
104     gSystem->Exec(Form("tar xf %s",GetFile(kDAQ,"pedestals",((TObjString*)pLdc->At(i))->GetName()))); //untar pedestal files from current LDC
105   AliHMPIDDigit dig;
106   Int_t nSigCut,r,d,a,hard;  Float_t mean,sigma;
107   for(Int_t ddl=0;ddl<14;ddl++){  
108     ifstream infile(Form("HmpidPedDdl%02i.txt",ddl));
109     if(!infile.is_open()) return kFALSE;
110     TMatrix *pM=(TMatrixF*)aDaqSig.At(ddl/2);
111     infile>>nSigCut; pM->SetUniqueID(nSigCut); //n. of pedestal distribution sigmas used to create zero suppresion table
112     while(!infile.eof()){
113       infile>>dec>>r>>d>>a>>mean>>sigma>>hex>>hard;      
114       dig.Raw(ddl,r,d,a);
115       (*pM)(dig.PadChX(),dig.PadChY()) = sigma;
116     }
117     infile.close();
118   }
119 //  gSystem->Exec("rm -rf HmpidPed*");
120   AliCDBMetaData metaData; metaData.SetBeamPeriod(0); metaData.SetResponsible("AliHMPIDPreprocessor"); metaData.SetComment("SIMULATED");
121   return Store("Calib","DaqSig",&aDaqSig,&metaData,0,kTRUE);
122 }//ProcPed()  
123 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
124 Double_t ProcTrans()
125 {
126 // Process transparency monitoring data and calculates Emean  
127   Double_t eMean=6.67786;     //mean energy of photon defined  by transperancy window
128   return eMean;
129 }   
130 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
131