]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/macros/CalibrationDB/AliPHOSLocalReconstruction.C
Updated to new CDB
[u/mrichter/AliRoot.git] / PHOS / macros / CalibrationDB / AliPHOSLocalReconstruction.C
CommitLineData
104bfa82 1AliPHOSLocalReconstruction()
2{
3 //Run PHOS clusterization using information from calibration database.
16b8ada8 4 // Author: Boris Polishchuk (Boris.Polichtchouk at cern.ch)
104bfa82 5
6 // Open local calibration data base
16b8ada8 7 AliCDBStorage* storage = AliCDBManager::Instance()->GetStorage("local://CalibDB");
104bfa82 8
9 // Make clusterization, calibration parameters will be taken from CDB
10 AliPHOSClusterizerv1 *clu = new AliPHOSClusterizerv1("galice.root");
11 clu->SetEventRange(0,-1);
12 clu->Exec("deb tim");
13}