]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/MUONCDB.h
Adding generation of trigger masks, trigger lut and trigger effiency.
[u/mrichter/AliRoot.git] / MUON / MUONCDB.h
1 #ifndef MUONCDB_H
2 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  * See cxx source for full Copyright notice                               */
4
5 /* $Id$ */
6
7 /// By Laurent Aphecetche
8
9 #include "Rtypes.h"
10
11 class TList;
12 class AliMUONV1DStore;
13 class AliMUONV2DStore;
14
15 static const char* CDBPath = "local://$ALICE_ROOT/";
16
17 void generateTrigger(const char* cdbpath=CDBPath);
18
19 void generateCalibrations(const char* cdbpath=CDBPath, Bool_t defaultValues = kTRUE);
20
21 TList* manuList(Bool_t reset=kFALSE);
22
23 void plotCDB(const char* calibType="MUON/Calib/Pedestals");
24
25 AliMUONV2DStore* read2D(const char* calibType="MUON/Calib/Pedestals");
26 AliMUONV1DStore* read1D(const char* calibType="MUON/Calib/LocalBoardMasks");
27
28 void testMakeStores(Int_t readLoop=10);
29
30 #endif