]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/CreateCalibPars_Miscalibrated.C
New treatment of the cluster coordinate (Christoph)
[u/mrichter/AliRoot.git] / TOF / CreateCalibPars_Miscalibrated.C
1 void CreateCalibPars_Miscalibrated(){
2   // Create TOF Calibration Object for miscalibrated detector
3   // and write it on CDB
4   AliTOFGeometry *geom = new AliTOFGeometryV5(); 
5   AliTOFcalib *tofcalib = new AliTOFcalib(geom);
6   AliTOFCal *tofCal= new AliTOFCal(geom);
7   tofCal->CreateArray();
8
9   // Input data for decalibration
10
11   TFile f("$ALICE_ROOT/TOF/data/spectrum.root","READ");  
12
13   TH1F *hTimeToTFit=  (TH1F*)f.Get("hTimeToTLim");
14   TF1  *fit=hTimeToTFit->GetFunction("pol5");
15   
16   // Slewing parameters (same for all channels)
17
18   Float_t par[6] = {0.,0.,0.,0.,0.,0.};
19   for(Int_t i =0;i<6;i++){
20     par[i]=fit->GetParameter(i);
21     cout << " Slewing parameters=" << par[i] << endl;
22   }
23
24   // Global time offset (randomly gen, gaussian with mean = 0.3, sig=0.08 ns)
25
26   Float_t delay=0.;
27   Float_t meanDelay=0.3;
28   Float_t sigmaDelay=0.08;
29
30   // ToT spectrum 
31
32   TH1F *hToT=  (TH1F*)f.Get("hToTLim");
33
34   // Fill the Sim calibration object
35
36   AliCDBManager *man = AliCDBManager::Instance();
37   man->SetDefaultStorage("local://$ALICE");
38   TRandom *rnd   = new TRandom(4357);
39   for (Int_t ipad = 0 ; ipad<tofCal->NPads(); ipad++){
40     AliTOFChannel *calChannel = tofCal->GetChannel(ipad);
41     calChannel->SetSlewPar(par);
42     delay=rnd->Gaus(meanDelay,sigmaDelay);
43     calChannel->SetDelay(delay);
44   }
45   tofcalib->WriteSimParOnCDB("TOF/Calib",0,0,tofCal,hToT);
46   f.Close();
47 }
48
49