]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/MUONCDB.h
ReadRaw(): TGraphs are created once per event (B.Polichtchouk)
[u/mrichter/AliRoot.git] / MUON / MUONCDB.h
CommitLineData
b3c7c475 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
8f7d7575 9#include "Rtypes.h"
10
b3c7c475 11class TList;
d29760d6 12class AliMUONV1DStore;
8f7d7575 13class AliMUONV2DStore;
14
d29760d6 15static const char* CDBPath = "local://$ALICE_ROOT/";
16
17void generateTrigger(const char* cdbpath=CDBPath);
18
19void generateCalibrations(const char* cdbpath=CDBPath, Bool_t defaultValues = kTRUE);
8f7d7575 20
21TList* manuList(Bool_t reset=kFALSE);
22
23void plotCDB(const char* calibType="MUON/Calib/Pedestals");
b3c7c475 24
d29760d6 25AliMUONV2DStore* read2D(const char* calibType="MUON/Calib/Pedestals");
26AliMUONV1DStore* read1D(const char* calibType="MUON/Calib/LocalBoardMasks");
b3c7c475 27
8f7d7575 28void testMakeStores(Int_t readLoop=10);
b3c7c475 29
30#endif