]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONCDB.h
New raw-reader class which deals with events taken from shared memory via the DATE...
[u/mrichter/AliRoot.git] / MUON / AliMUONCDB.h
CommitLineData
de01cdf0 1#ifndef ALIMUONCDB_H
2#define ALIMUONCDB_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8/// \ingroup base
9/// \class AliMUONCDB
10/// \brief Helper class to experience the OCDB
11///
12// Author Laurent Aphecetche
13
14#include <TObject.h>
15#include <TString.h>
16
a0eca509 17class AliMUONVStore;
18class AliMUONVStore;
de01cdf0 19class TMap;
20class AliMUONVCalibParam;
21class AliMUONTriggerLut;
22class AliMUONTriggerEfficiencyCells;
23
24#define ALIMUONCDBINFINITY 99999999
25
26class AliMUONCDB : public TObject
27{
28public:
29 /// Ctor. change the path for testing the Shuttle preprocessor, to
30 /// "local://$ALICE_ROOT/SHUTTLE/TestShuttle/TestCDB"
31 AliMUONCDB(const char* cdbpath = "local://$ALICE_ROOT");
32 virtual ~AliMUONCDB();
33
046e5fd4 34 void SetMaxNofChannelsToGenerate(Int_t n);
35
a0eca509 36 Int_t MakeNeighbourStore(AliMUONVStore& neighbourStore);
de01cdf0 37
38 Int_t MakeHVStore(TMap& aliasMap, Bool_t defaultValues);
a0eca509 39 Int_t MakePedestalStore(AliMUONVStore& pedestalStore, Bool_t defaultValues);
40 Int_t MakeCapacitanceStore(AliMUONVStore& capaStore, Bool_t defaultValues);
25e1df3e 41 Int_t MakeCapacitanceStore(AliMUONVStore& capaStore, const char* file);
a0eca509 42 Int_t MakeGainStore(AliMUONVStore& gainStore, Bool_t defaultValues);
de01cdf0 43
a0eca509 44 Int_t MakeLocalTriggerMaskStore(AliMUONVStore& ltm) const;
45 Int_t MakeRegionalTriggerMaskStore(AliMUONVStore& rtm) const;
de01cdf0 46 Int_t MakeGlobalTriggerMaskStore(AliMUONVCalibParam& gtm) const;
47 AliMUONTriggerLut* MakeTriggerLUT(const char* file="$(ALICE_ROOT)/MUON/data/lutAptLpt1Hpt1p7.root") const;
48 AliMUONTriggerEfficiencyCells* MakeTriggerEfficiency(const char* file="$ALICE_ROOT/MUON/data/efficiencyCells.dat") const;
49
50 /// Compute the difference between two (compatible) stores
a0eca509 51 AliMUONVStore* Diff(AliMUONVStore& store1, AliMUONVStore& store2,
de01cdf0 52 const char* opt="abs");
53
a0eca509 54 void Plot(const AliMUONVStore& store, const char* name, Int_t nbins=512);
de01cdf0 55
56 void WriteToCDB(const char* calibpath, TObject* object,
57 Int_t startRun, Int_t endRun, Bool_t defaultValues);
25e1df3e 58 void WriteToCDB(const char* calibpath, TObject* object,
59 Int_t startRun, Int_t endRun, const char* filename);
de01cdf0 60
61 void WriteTrigger(Int_t startRun=0,Int_t endRun=ALIMUONCDBINFINITY);
62 void WriteTracker(Bool_t defaultValues=kTRUE, Int_t startRun=0,Int_t endRun=ALIMUONCDBINFINITY);
63
64 void WriteNeighbours(Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
65 void WriteHV(Bool_t defaultValues, Int_t startRun, Int_t endRun);
66 void WritePedestals(Bool_t defaultValues, Int_t startRun, Int_t endRun=ALIMUONCDBINFINITY);
67 void WriteGains(Bool_t defaultValues, Int_t startRun, Int_t endRun=ALIMUONCDBINFINITY);
68 void WriteCapacitances(Bool_t defaultValues, Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
25e1df3e 69 void WriteCapacitances(const char* file, Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
de01cdf0 70
71 void WriteLocalTriggerMasks(Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
72 void WriteRegionalTriggerMasks(Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
73 void WriteGlobalTriggerMasks(Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
74 void WriteTriggerLut(Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
75 void WriteTriggerEfficiency(Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
76
77private:
ef447c30 78 /// Not implemented
79 AliMUONCDB(const AliMUONCDB& rhs);
80 /// Not implemented
de01cdf0 81 AliMUONCDB& operator=(const AliMUONCDB& rhs);
82
83private:
84 TString fCDBPath; //!< where to write stuff
046e5fd4 85 Int_t fMaxNofChannelsToGenerate; //!< to limit the number of generated channels (debug)
de01cdf0 86
87 ClassDef(AliMUONCDB,0) // Helper class to experience OCDB
88};
89
90#endif