]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONCDB.h
Add Config/HighVoltage directory and entry
[u/mrichter/AliRoot.git] / MUON / AliMUONCDB.h
index cdd713880e4b487a204340931f09867fdfd1d0b1..fd687b8504bca46b71f58c023975dd1aa21bc79a 100644 (file)
@@ -14,9 +14,8 @@
 #include <TObject.h>
 #include <TString.h>
 
-class TList;
-class AliMUONV1DStore;
-class AliMUONV2DStore;
+class AliMUONVStore;
+class AliMUONVStore;
 class TMap;
 class AliMUONVCalibParam;
 class AliMUONTriggerLut;
@@ -32,27 +31,32 @@ public:
   AliMUONCDB(const char* cdbpath = "local://$ALICE_ROOT");
   virtual ~AliMUONCDB();
   
-  Int_t MakeNeighbourStore(AliMUONV2DStore& neighbourStore);
+  void SetMaxNofChannelsToGenerate(Int_t n);
+  
+  Int_t MakeNeighbourStore(AliMUONVStore& neighbourStore);
 
   Int_t MakeHVStore(TMap& aliasMap, Bool_t defaultValues);
-  Int_t MakePedestalStore(AliMUONV2DStore& pedestalStore, Bool_t defaultValues);
-  Int_t MakeCapacitanceStore(AliMUONV1DStore& capaStore, Bool_t defaultValues);
-  Int_t MakeGainStore(AliMUONV2DStore& gainStore, Bool_t defaultValues);
+  Int_t MakePedestalStore(AliMUONVStore& pedestalStore, Bool_t defaultValues);
+  Int_t MakeCapacitanceStore(AliMUONVStore& capaStore, Bool_t defaultValues);
+  Int_t MakeCapacitanceStore(AliMUONVStore& capaStore, const char* file);
+  Int_t MakeGainStore(AliMUONVStore& gainStore, Bool_t defaultValues);
   
-  Int_t MakeLocalTriggerMaskStore(AliMUONV1DStore& ltm) const;
-  Int_t MakeRegionalTriggerMaskStore(AliMUONV1DStore& rtm) const;
+  Int_t MakeLocalTriggerMaskStore(AliMUONVStore& ltm) const;
+  Int_t MakeRegionalTriggerMaskStore(AliMUONVStore& rtm) const;
   Int_t MakeGlobalTriggerMaskStore(AliMUONVCalibParam& gtm) const;
   AliMUONTriggerLut* MakeTriggerLUT(const char* file="$(ALICE_ROOT)/MUON/data/lutAptLpt1Hpt1p7.root") const;
   AliMUONTriggerEfficiencyCells* MakeTriggerEfficiency(const char* file="$ALICE_ROOT/MUON/data/efficiencyCells.dat") const;
 
   /// Compute the difference between two (compatible) stores
-  AliMUONV2DStore* Diff(AliMUONV2DStore& store1, AliMUONV2DStore& store2, 
+  AliMUONVStore* Diff(AliMUONVStore& store1, AliMUONVStore& store2, 
                         const char* opt="abs");
     
-  void Plot(const AliMUONV2DStore& store, const char* name, Int_t nbins=512);
+  void Plot(const AliMUONVStore& store, const char* name, Int_t nbins=512);
 
   void WriteToCDB(const char* calibpath, TObject* object, 
                   Int_t startRun, Int_t endRun, Bool_t defaultValues);
+  void WriteToCDB(const char* calibpath, TObject* object, 
+                  Int_t startRun, Int_t endRun, const char* filename);
 
   void WriteTrigger(Int_t startRun=0,Int_t endRun=ALIMUONCDBINFINITY);
   void WriteTracker(Bool_t defaultValues=kTRUE, Int_t startRun=0,Int_t endRun=ALIMUONCDBINFINITY);
@@ -62,6 +66,7 @@ public:
   void WritePedestals(Bool_t defaultValues, Int_t startRun, Int_t endRun=ALIMUONCDBINFINITY);
   void WriteGains(Bool_t defaultValues, Int_t startRun, Int_t endRun=ALIMUONCDBINFINITY);
   void WriteCapacitances(Bool_t defaultValues, Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
+  void WriteCapacitances(const char* file, Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
   
   void WriteLocalTriggerMasks(Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
   void WriteRegionalTriggerMasks(Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
@@ -70,13 +75,14 @@ public:
   void WriteTriggerEfficiency(Int_t startRun=0, Int_t endRun=ALIMUONCDBINFINITY);
   
 private:
-    AliMUONCDB(const AliMUONCDB& rhs);
+  /// Not implemented
+  AliMUONCDB(const AliMUONCDB& rhs);
+  /// Not implemented
   AliMUONCDB& operator=(const AliMUONCDB& rhs);
   
 private:
   TString fCDBPath; //!< where to write stuff
-  TList* fManuList; //!< full list of manus
-  static const Int_t fgkMaxNofChannelsPerManu; //!< 64
+  Int_t fMaxNofChannelsToGenerate; //!< to limit the number of generated channels (debug)
   
   ClassDef(AliMUONCDB,0) // Helper class to experience OCDB
 };