]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDPutHot.C
clustering parameter is set
[u/mrichter/AliRoot.git] / PMD / 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   man->GetDefaultStorage()->Put(hotda,id,md);
12 }