]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONCDB.h
Main changes:
[u/mrichter/AliRoot.git] / MUON / AliMUONCDB.h
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 #include "AliCDBRunRange.h"
17
18 class AliMUONVStore;
19 class TMap;
20 class AliMUONVCalibParam;
21 class AliMUONTriggerLut;
22 class AliMUONTriggerEfficiencyCells;
23 class AliMUONRegionalTriggerConfig;
24 class AliMUONGlobalCrateConfig;
25 class AliMUONRejectList;
26
27 class AliMUONCDB : public TObject
28 {
29 public:
30   /// Ctor. change the path for testing the Shuttle preprocessor, to
31   /// "local://$ALICE_ROOT/OCDB/SHUTTLE/TestShuttle/TestCDB"
32   AliMUONCDB(const char* cdbpath = "local://$ALICE_ROOT/OCDB");
33   virtual ~AliMUONCDB();
34   
35   void SetMaxNofChannelsToGenerate(Int_t n);
36   
37   Int_t MakeNeighbourStore(AliMUONVStore& neighbourStore);
38
39   Int_t MakeHVStore(TMap& aliasMap, Bool_t defaultValues);
40   Int_t MakeTriggerDCSStore(TMap& aliasMap, Bool_t defaultValues);
41   Int_t MakePedestalStore(AliMUONVStore& pedestalStore, Bool_t defaultValues);
42   Int_t MakeCapacitanceStore(AliMUONVStore& capaStore, Bool_t defaultValues);
43   Int_t MakeCapacitanceStore(AliMUONVStore& capaStore, const char* file);
44   Int_t MakeGainStore(AliMUONVStore& gainStore, Bool_t defaultValues);
45   Int_t MakeOccupancyMapStore(AliMUONVStore& occupancyMap, Bool_t defaultValues);
46   AliMUONRejectList* MakeRejectListStore(Bool_t defaultValues);
47   
48   Int_t MakeLocalTriggerMaskStore(AliMUONVStore& ltm) const;  
49   Int_t MakeRegionalTriggerConfigStore(AliMUONRegionalTriggerConfig& rtm) const;
50   Int_t MakeGlobalTriggerConfigStore(AliMUONGlobalCrateConfig& gtm) const;
51   
52   AliMUONTriggerLut* MakeTriggerLUT(const char* file="$(ALICE_ROOT)/MUON/data/lutAptLpt1Hpt1p7.root") const;
53   AliMUONTriggerEfficiencyCells* MakeTriggerEfficiency(const char* file="$ALICE_ROOT/MUON/data/efficiencyCells.dat") const;
54
55   /// Compute the difference between two (compatible) stores
56   AliMUONVStore* Diff(AliMUONVStore& store1, AliMUONVStore& store2, 
57                         const char* opt="abs");
58     
59   void Plot(const AliMUONVStore& store, const char* name, Int_t nbins=512);
60
61   void WriteToCDB(const char* calibpath, TObject* object, 
62                   Int_t startRun, Int_t endRun, Bool_t defaultValues);
63   void WriteToCDB(const char* calibpath, TObject* object, 
64                   Int_t startRun, Int_t endRun, const char* filename);
65   void WriteToCDB(TObject* object, const char* calibpath, Int_t startRun=0, Int_t endRun=AliCDBRunRange::Infinity(),
66                   const char* comment="", const char* responsible="AliMUONCDB tester class");
67
68   void WriteTrigger(Bool_t defaultValues=kTRUE, Int_t startRun=0,Int_t endRun=AliCDBRunRange::Infinity());
69   void WriteTracker(Bool_t defaultValues=kTRUE, Int_t startRun=0,Int_t endRun=AliCDBRunRange::Infinity());
70   
71   void WriteNeighbours(Int_t startRun=0, Int_t endRun=AliCDBRunRange::Infinity());
72   void WriteHV(Bool_t defaultValues, Int_t startRun, Int_t endRun=AliCDBRunRange::Infinity());
73   void WriteTriggerDCS(Bool_t defaultValues, Int_t startRun, Int_t endRun=AliCDBRunRange::Infinity());
74   void WritePedestals(Bool_t defaultValues, Int_t startRun, Int_t endRun=AliCDBRunRange::Infinity());
75   void WriteGains(Bool_t defaultValues, Int_t startRun, Int_t endRun=AliCDBRunRange::Infinity());
76   void WriteCapacitances(Bool_t defaultValues, Int_t startRun=0, Int_t endRun=AliCDBRunRange::Infinity());
77   void WriteCapacitances(const char* file, Int_t startRun=0, Int_t endRun=AliCDBRunRange::Infinity());
78   void WriteOccupancyMap(Bool_t defaultValues, Int_t startRun, Int_t endRun=AliCDBRunRange::Infinity());
79   void WriteRejectList(Bool_t defaultValues, Int_t startRun, Int_t endRun=AliCDBRunRange::Infinity());
80   
81   void WriteLocalTriggerMasks(Int_t startRun=0, Int_t endRun=AliCDBRunRange::Infinity());
82   void WriteRegionalTriggerConfig(Int_t startRun=0, Int_t endRun=AliCDBRunRange::Infinity());
83   void WriteGlobalTriggerConfig(Int_t startRun=0, Int_t endRun=AliCDBRunRange::Infinity());
84   
85   void WriteTriggerLut(Int_t startRun=0, Int_t endRun=AliCDBRunRange::Infinity());
86   void WriteTriggerEfficiency(Int_t startRun=0, Int_t endRun=AliCDBRunRange::Infinity());
87   
88 private:
89   /// Not implemented
90   AliMUONCDB(const AliMUONCDB& rhs);
91   /// Not implemented
92   AliMUONCDB& operator=(const AliMUONCDB& rhs);
93   
94 private:
95   TString fCDBPath; //!< where to write stuff
96   Int_t fMaxNofChannelsToGenerate; //!< to limit the number of generated channels (debug)
97   
98   ClassDef(AliMUONCDB,0) // Helper class to experience OCDB
99 };
100
101 #endif