]> git.uio.no Git - u/mrichter/AliRoot.git/blob - VZERO/MakeVZEROPMGainsEntry.C
Fixes for #77757: Issues with CMake and detector algorithms. The following targets...
[u/mrichter/AliRoot.git] / VZERO / MakeVZEROPMGainsEntry.C
1 void MakeVZEROPMGainsEntry()
2 {
3
4   AliCDBManager *man = AliCDBManager::Instance();
5   man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
6
7   // Creation of the PM gains OCDB object
8   Double_t a[64] = {-39.68,-35.83,-36.92,-36.42,-37.02,-37.50,-43.05,-39.39,
9                     -36.62,-36.93,-37.30,-36.46,-39.51,-40.32,-39.92,-39.20,
10                     -35.39,-37.95,-38.85,-42.76,-40.68,-40.32,-39.00,-37.36,
11                     -39.64,-38.86,-37.59,-39.59,-37.97,-36.32,-38.88,-41.35,
12                     -36.01,-36.82,-39.48,-36.86,-38.22,-32.55,-39.44,-35.08,
13                     -29.91,-37.88,-33.25,-36.49,-37.25,-35.89,-40.31,-39.15,
14                     -41.71,-37.07,-38.94,-36.04,-36.62,-32.96,-36.99,-30.71,
15                     -36.66,-37.23,-35.98,-36.56,-35.64,-36.97,-35.88,-38.78};
16   Double_t b[66] = {7.40,  6.83,  7.02,  6.94,  7.03,  7.04,  7.79,  7.27,
17                     6.92,  6.96,  7.01,  6.90,  7.28,  7.38,  7.33,  7.23,
18                     6.71,  7.05,  7.17,  7.69,  7.41,  7.38,  7.21,  7.11,
19                     7.26,  7.12,  6.98,  7.35,  6.99,  6.79,  7.13,  7.58,
20                     6.95,  7.01,  7.33,  7.01,  7.21,  6.01,  7.34,  6.44,
21                     5.68,  7.12,  6.07,  6.92,  7.04,  6.82,  7.04,  7.24,
22                     7.53,  6.99,  7.10,  6.89,  7.07,  6.35,  6.88,  5.77,
23                     6.81,  7.01,  6.89,  6.84,  6.68,  6.95,  6.73,  7.14};
24
25   TH2F *gains = new TH2F("VZEROPMGains","VZERO PM gain factors",64,-0.5,63.5,2,-0.5,1.5);
26   for(Int_t channel = 0; channel < 64; ++channel) {
27     gains->SetBinContent(channel+1,1,a[channel]);
28     gains->SetBinContent(channel+1,2,b[channel]);
29   }
30         
31   AliCDBMetaData *md= new AliCDBMetaData(); // metaData describing the object
32   md->SetResponsible("Brigitte Cheynis");
33   md->SetBeamPeriod(0);
34   md->SetAliRootVersion(gSystem->Getenv("ARVERSION"));
35   md->SetComment("PM gain factors channel by channel");
36   md->PrintMetaData();
37
38   AliCDBStorage *storLoc = man->GetDefaultStorage();
39   AliCDBId id("VZERO/Calib/PMGains",0,AliCDBRunRange::Infinity());
40
41   storLoc->Put(gains, id, md);
42
43   storLoc->Delete();
44   delete md;
45
46 }