]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Corrected paragraph on Writing to CDB in READMEcalib.txt:
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 21 Mar 2008 11:18:42 +0000 (11:18 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 21 Mar 2008 11:18:42 +0000 (11:18 +0000)
 We have to load mapping before creating AliMUONCDB object.

MUON/READMEcalib.txt

index 2902bf3dd8f9475ed2572ca92f8240a86e7fec02..9583cec1601df189f32e350b0c590ed0ea30ca3d 100644 (file)
@@ -68,11 +68,12 @@ the Root prompt (from within the $ALICE_ROOT/MUON directory to get the correct
 list of libraries loaded by the loadlibs.C macro)
 
 <pre>
-root[0] AliMUONCDB cdb;
-root[1] Int_t startRun = 0;
-root[2] Bool_t defaultValues = kTRUE;
-root[3] cdb.WriteTrigger(startRun);
-root[4] cdb.WriteTracker(defaultValues,startRun);
+root[0] AliMpCDB::LoadDDLStore2(); 
+root[1] AliMUONCDB cdb;
+root[2] Int_t startRun = 0;
+root[3] Bool_t defaultValues = kTRUE;
+root[4] cdb.WriteTrigger(startRun);
+root[5] cdb.WriteTracker(defaultValues,startRun);
 </pre>