]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/macros/BeamTest/makecontDB.C
headers to compile without ALI_DAT
[u/mrichter/AliRoot.git] / PHOS / macros / BeamTest / makecontDB.C
CommitLineData
e869dd6c 1void makecontDB(void){
2 AliPHOSConTableDB * c = new AliPHOSConTableDB("Beamtest2002") ;
3 c->SetNRaws(8) ;
4 c->SetNCols(8) ;
5 c->BuildDB() ;
6 TFile f("ConTableDB.root","recreate") ;
7 f.cd() ;
8 c->Write(0) ;
9 f.Close() ;
10
11}