104bfa82 |
1 | AliPHOSLocalReconstruction() |
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 | } |