]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONCalibrationData.h
AMORE & QA fixes.
[u/mrichter/AliRoot.git] / MUON / AliMUONCalibrationData.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice                               */
3
4 // $Id$
5
6 /// \ingroup calib
7 /// \class AliMUONCalibrationData
8 /// \brief Single entry point to access MUON calibration data.
9 /// 
10 //  Author Laurent Aphecetche
11
12 #ifndef ALIMUONCALIBRATIONDATA_H
13 #define ALIMUONCALIBRATIONDATA_H
14
15 #ifndef ROOT_TObject
16 #include "TObject.h"
17 #endif
18
19 class AliCDBEntry;
20 class AliMUONGlobalCrateConfig;
21 class AliMUONRegionalTriggerConfig;
22 class AliMUONRejectList;
23 class AliMUONTriggerEfficiencyCells;
24 class AliMUONTriggerLut;
25 class AliMUONVCalibParam;
26 class AliMUONVStore;
27 class AliMUONVStore;
28 class TMap;
29
30 class AliMUONCalibrationData : public TObject
31 {
32 public:
33   /** Constructor.
34     * @param runNumber is used as a key to the CDB
35     * @param deferredInitialization if kFALSE, all the calibrations are fetched
36     * regardless of whether you'll use them or not.
37     */
38   AliMUONCalibrationData(Int_t runNumber=-1, Bool_t deferredInitialization=kTRUE);
39   virtual ~AliMUONCalibrationData();
40
41   AliMUONVStore* Capacitances() const;
42
43   /// Create a capa store (which must be deleted) from OCDB for the given run
44   static AliMUONVStore* CreateCapacitances(Int_t runNumber, Int_t* startOfValidity=0);
45
46   /// Create a gain store (which must be deleted) from OCDB for the given run
47   static AliMUONVStore* CreateGains(Int_t runNumber, Int_t* startOfValidity=0);
48
49   /// Create a global trigger mask (which must be deleted) from OCDB for the given run
50   static AliMUONGlobalCrateConfig* CreateGlobalTriggerCrateConfig(Int_t runNumber, Int_t* startOfValidity=0);
51   
52   /// Create a hv map (which must be deleted) from OCDB for the given run
53   static TMap* CreateHV(Int_t runNumber, Int_t* startOfValidity=0);
54
55   /// Create a Trigger HV and current  map (which must be deleted) from OCDB for the given run
56   static TMap* CreateTriggerDCS(Int_t runNumber, Int_t* startOfValidity=0);
57
58   /// Create a neighbours store (which must be deleted) from OCDB for the given run
59   static AliMUONVStore* CreateNeighbours(Int_t runNumber, Int_t* startOfValidity=0);
60   
61   /// Create a local trigger mask store (which must be deleted) for a given run
62   static AliMUONVStore* CreateLocalTriggerBoardMasks(Int_t runNumber, Int_t* startOfValidity=0);
63
64   /// Create an occupancy map store (which must be deleted) from OCDB for the given run
65   static AliMUONVStore* CreateOccupancyMap(Int_t runNumber, Int_t* startOfValidity=0);
66
67   /// Create a rejectlist store (which must be deleted) from OCDB for the given run
68   static AliMUONRejectList* CreateRejectList(Int_t runNumber, Int_t* startOfValidity=0);
69
70   /// Create a pedestal store (which must be deleted) from OCDB for the given run
71   static AliMUONVStore* CreatePedestals(Int_t runNumber, Int_t* startOfValidity=0);
72
73   /// Create a regional trigger mask store (which must be deleted) for a given run
74   static AliMUONRegionalTriggerConfig* CreateRegionalTriggerConfig(Int_t runNumber, Int_t* startOfValidity=0);
75
76   /// Create a trigger Look Up Table (which must be deleted) for a given run
77   static AliMUONTriggerLut* CreateTriggerLut(Int_t runNumber, Int_t* startOfValidity=0);
78   /// Create a trigger efficiency map (which must be deleted) for a given run
79   static AliMUONTriggerEfficiencyCells* CreateTriggerEfficiency(Int_t runNumber, Int_t* startOfValidity=0);
80   
81   /// Get all the gains
82   AliMUONVStore* Gains() const;
83
84   /// Get the configuration for the global trigger board.
85   AliMUONGlobalCrateConfig* GlobalTriggerCrateConfig() const;
86     
87   /// Get the Gain calibration object for channels within (detElemId,manuId).
88   AliMUONVCalibParam* Gains(Int_t detElemId, Int_t manuId) const;
89     
90   /// Get the HV values
91   TMap* HV() const;
92
93   /// Get the Trigger HV and current values
94   TMap* TriggerDCS() const;
95     
96   /// Whether this object is valid or not (might be invalid if fetching from CDB failed).
97   Bool_t IsValid() const { return fIsValid; }
98     
99   /// Get the mask for a given local trigger board.
100   AliMUONVCalibParam* LocalTriggerBoardMasks(Int_t localBoardNumber) const;
101     
102   /// Get the neighbours store
103   AliMUONVStore* Neighbours() const;
104   
105   /// Get the pedestal store
106   AliMUONVStore* Pedestals() const;
107
108   /// Get the occupancy map store
109   AliMUONVStore* OccupancyMap() const;
110
111   /// Get the reject list store
112   AliMUONRejectList* RejectList() const;
113
114   /// Get the Pedestal calibration object for channels within (detElemId,manuId).
115   AliMUONVCalibParam* Pedestals(Int_t detElemId, Int_t manuId) const;
116   
117   /// Dump to screen.
118   virtual void Print(Option_t* opt="") const;
119
120   /// Get the config for regional trigger.
121   AliMUONRegionalTriggerConfig* RegionalTriggerConfig() const;
122
123
124   /// The runnumber used by this object.
125   Int_t RunNumber() const { return fRunNumber; }
126   
127   /// Get the trigger Look Up Table.
128   AliMUONTriggerLut* TriggerLut() const;
129   
130   /// Get the trigger efficiency map
131   AliMUONTriggerEfficiencyCells* TriggerEfficiency() const;
132   
133   void Reset();
134
135   static TObject* CreateObject(Int_t runNumber, const char* path, Int_t* startOfValidity=0x0);
136   
137   static void Check(Int_t runNumber);
138   
139   static void BypassStores(AliMUONVStore* ped, AliMUONVStore* gain);
140   
141 protected:
142   /// Not implemented
143   AliMUONCalibrationData(const AliMUONCalibrationData& other);
144   /// Not implemented
145   AliMUONCalibrationData& operator=(const AliMUONCalibrationData& other);
146   
147 private:
148   mutable Bool_t fIsValid; ///<  Whether we were able to correctly initialize
149   Int_t fRunNumber; ///<  The run number for which we hold calibrations
150   mutable AliMUONVStore* fGains; //!< Gains
151   mutable AliMUONVStore* fPedestals; //!< Pedestals
152   mutable TMap* fHV; //!< HV
153   mutable TMap* fTriggerDCS; //!< Trigger HV and Currents
154   mutable AliMUONVStore* fLocalTriggerBoardMasks; //!< Local trigger board maska  
155   mutable AliMUONRegionalTriggerConfig* fRegionalTriggerConfig; //!< Regional trigger config
156   mutable AliMUONGlobalCrateConfig* fGlobalTriggerCrateConfig; //!< Global trigger crate config
157   
158   mutable AliMUONTriggerLut* fTriggerLut; //!< TRigger LUTs
159   mutable AliMUONTriggerEfficiencyCells* fTriggerEfficiency; //!< Trigger efficiency cells
160   mutable AliMUONVStore* fCapacitances; //!< Manu capacitances
161   mutable AliMUONVStore* fNeighbours; //!< list of neighbours for all channels
162   
163   mutable AliMUONVStore* fOccupancyMap; //!< occupancy map
164   
165   mutable AliMUONRejectList* fRejectList; //!< reject list
166
167   static AliMUONVStore* fBypassPedestals;
168   static AliMUONVStore* fBypassGains;
169     
170   ClassDef(AliMUONCalibrationData,12) // Storage for all MUON calibration data.
171 };
172
173 #endif