]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/macro/AliPMDPutHot.C
adding cmake option HLT_COMPONENT_STATISTICS to enable build with the HLT component...
[u/mrichter/AliRoot.git] / PMD / macro / AliPMDPutHot.C
1 //
2 // This macro puts the gains in the database
3 //
4 void AliPMDPutHot()
5 {
6   AliPMDHotData *hotda=new AliPMDHotData();
7   AliCDBManager *man = AliCDBManager::Instance();
8   man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
9   AliCDBId id("PMD/Calib/Hot",0,AliCDBRunRange::Infinity());
10   AliCDBMetaData *md=new AliCDBMetaData();
11   md->SetResponsible("Satyajit Jena");
12   md->SetComment("Hot Cell Maps");
13   man->GetDefaultStorage()->Put(hotda,id,md);
14 }