]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTrackerData.h
Restoring backward compatibility of the SSD calibration objects + output of the SSD...
[u/mrichter/AliRoot.git] / MUON / AliMUONTrackerData.h
1 #ifndef ALIMUONTRACKERDATA_H
2 #define ALIMUONTRACKERDATA_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice                               */
6
7 // $Id$
8
9 /// \ingroup calib
10 /// \class AliMUONTrackerData
11 /// \brief Implementation of AliMUONVTrackerData
12 /// 
13 // Author Laurent Aphecetche, Subatech
14
15 #ifndef ALIMUONVTRACKERDATA_H
16 #  include "AliMUONVTrackerData.h"
17 #endif
18
19 class AliMUONSparseHisto;
20 class AliMUONVCalibParam;
21 class AliMUONVStore;
22 class AliMpDetElement;
23
24 class AliMUONTrackerData : public AliMUONVTrackerData
25 {
26 public:
27   AliMUONTrackerData(const char* name="", const char* title="", 
28                      Int_t dimension=0,
29                      Bool_t issingleevent=kFALSE);
30   virtual ~AliMUONTrackerData();
31
32   Bool_t Add(const AliMUONTrackerData& data);
33   
34   virtual Bool_t Add(const AliMUONVStore& channelValues, TArrayI* nofEventsPerDDL=0x0);
35
36   virtual Bool_t Replace(const AliMUONVStore& channelValues);
37
38   virtual Double_t BusPatch(Int_t busPatchId, Int_t dim=0) const;
39
40   virtual Double_t Chamber(Int_t chamberId, Int_t dim=0) const;
41
42   virtual Double_t Channel(Int_t detElemId, Int_t manuId, Int_t manuChannel,
43                            Int_t dim=0) const;
44   
45   virtual void Clear(Option_t* opt="");
46   
47   virtual Double_t Count(Int_t detElemId, Int_t manuId, Int_t manuChannel) const;
48   
49   virtual Double_t DetectionElement(Int_t detElemId, Int_t dim=0) const;
50
51   virtual TString DimensionName(Int_t dim) const;
52   
53   virtual TString ExternalDimensionName(Int_t dim) const;
54
55   virtual Bool_t HasChamber(Int_t chamberId) const;
56   
57   virtual Bool_t HasBusPatch(Int_t busPatchId) const;
58
59   virtual Bool_t HasDetectionElement(Int_t detElemId) const;
60
61   virtual Bool_t HasManu(Int_t detElemId, Int_t manuId) const;
62
63   virtual Bool_t HasPCB(Int_t detElemId, Int_t pcbIndex) const;
64   
65   /// Whether we can be run
66   virtual Bool_t IsSingleEvent() const { return fIsSingleEvent; }
67   
68   virtual Double_t Manu(Int_t detElemId, Int_t manuId, Int_t dim=0) const;
69       
70   /// Returns the number of dimensions (i.e. the number of values) each element has
71   virtual Int_t NumberOfDimensions() const;
72   
73   /// The number of values we are inputting
74   virtual Int_t ExternalDimension() const { return fExternalDimension; }
75
76   /// Convert from internal to external dimension
77   virtual Int_t InternalToExternal(Int_t dim) const { return dim/2; }
78
79   /// Returns the number of events we have seen so far
80   virtual Int_t NumberOfEvents(Int_t ddlNumber) const;
81   
82   virtual Double_t PCB(Int_t detElemId, Int_t pcbIndex, Int_t dim=0) const;
83
84   using TObject::Print;
85   
86   /// Print, with option, all objects whose name matches wildcard
87   virtual void Print(Option_t* wildcard, Option_t* opt) const;
88   
89   virtual void SetDimensionName(Int_t index, const char* value);  
90
91   Bool_t CanHistogram() const { return kTRUE; }
92   
93   void MakeHistogramForDimension(Int_t index, Bool_t value, Double_t xmin=0.0, Double_t xmax=4096.0);
94   
95   virtual void HistogramRange(Double_t& xmin, Double_t& xmax) const { xmin = fXmin; xmax = fXmax; }
96
97   AliMUONSparseHisto* GetManuSparseHisto(Int_t detElemId, Int_t manuId, 
98                                          Int_t dim=0);
99
100   AliMUONSparseHisto* GetManuSparseHisto(Int_t detElemId, Int_t manuId, 
101                                          Int_t dim=0) const;
102   
103   AliMUONSparseHisto* GetChannelSparseHisto(Int_t detElemId, Int_t manuId, 
104                                             Int_t manuChannel, Int_t dim=0);
105   
106   virtual AliMUONSparseHisto* GetChannelSparseHisto(Int_t detElemId, Int_t manuId, 
107                                                     Int_t manuChannel, Int_t dim=0) const;
108
109         /// Disable storing values at the channel level
110         virtual void DisableChannelLevel();
111         
112         /// Whether we store values at the channel level or not
113         virtual Bool_t IsChannelLevelEnabled() const { return fIsChannelLevelEnabled; }
114
115   /// Disable storing values at the manu level
116         virtual void DisableManuLevel();
117         
118         /// Whether we store values at the manu level or not
119         virtual Bool_t IsManuLevelEnabled() const { return fIsManuLevelEnabled; }
120   
121 private:
122     
123   void FillHisto(Int_t detElemId, Int_t manuId, Int_t manuChannel,
124                  Int_t dim, Double_t value);
125
126   AliMUONVCalibParam* BusPatchParam(Int_t busPatch, Bool_t create=kFALSE) const;
127
128   AliMUONVCalibParam* CreateBusPatchParam(Int_t busPatch) const;
129   
130   AliMUONVCalibParam* ChamberParam(Int_t chamberId, Bool_t create=kFALSE) const;
131
132   AliMUONVCalibParam* CreateChamberParam(Int_t chamberId) const;
133   
134   AliMUONVCalibParam* ChannelParam(Int_t detElemId, Int_t manuId,
135                                    AliMUONVCalibParam* external=0x0) const;
136
137   AliMUONVCalibParam* DetectionElementParam(Int_t detElemId, Bool_t create=kFALSE) const;
138
139   AliMUONVCalibParam* CreateDetectionElementParam(Int_t detElemId) const;
140   
141   AliMUONVCalibParam* ManuParam(Int_t detElemId, Int_t manuId, Bool_t create=kFALSE) const;
142
143   AliMUONVCalibParam* CreateManuParam(Int_t detElemInd, Int_t manuId) const;
144   
145   AliMUONVCalibParam* PCBParam(Int_t detElemId, Int_t pcbIndex, Bool_t create=kFALSE) const;
146
147   AliMUONVCalibParam* CreatePCBParam(Int_t detElemId, Int_t pcbIndex) const;
148   
149   /// Index of the dimension containing the number of time an item was hit
150   virtual Int_t IndexOfNumberDimension() const { return fDimension - 1; }
151
152   /// Index of the dimension containing the occupancy number
153   virtual Int_t IndexOfOccupancyDimension() const { return fDimension - 2; }
154
155   /// Whether we have histograms for a given dimension, or not
156   virtual Bool_t IsHistogrammed(Int_t dim) const { return ( fHistogramming[dim] > 0 ); }
157
158   /// To allow merging of different objects
159   virtual Long64_t Merge(TCollection* list);
160
161   Int_t DdlIdFromBusPatchId(Int_t buspatchid) const;
162   Int_t DdlIdFromDetElemId(Int_t detelemid) const;
163   Int_t DdlIdFromChamberId(Int_t chamberid) const;
164   
165   /// Not implemented
166   AliMUONTrackerData(const AliMUONTrackerData& rhs);
167   /// Not implemented
168   AliMUONTrackerData& operator=(const AliMUONTrackerData& rhs);
169   
170   AliMUONVCalibParam* CreateDouble(const AliMUONVCalibParam& param, Int_t detElemId, Int_t manuId) const;
171
172   Int_t GetParts(AliMUONVCalibParam* external,
173                  AliMUONVCalibParam*& chamber,
174                  AliMUONVCalibParam*& de,
175                  AliMUONVCalibParam*& busPatch,
176                  AliMUONVCalibParam*& pcb,
177                  AliMUONVCalibParam*& manu,
178                  AliMUONVCalibParam*& channel,
179                  AliMpDetElement*& mpde);
180
181   /// Convert from external to internal index
182   Int_t External2Internal(Int_t index) const;
183
184   void SetInternalDimensionName(Int_t index, const char* value);  
185
186   void SetExternalDimensionName(Int_t index, const char* value);  
187
188   Double_t Value(const AliMUONVCalibParam& param, Int_t i, Int_t dim, Int_t ddlId) const;
189   
190   /// The number of values we actually *store* for each item
191   Int_t Dimension() const { return fDimension; }
192     
193   Bool_t InternalAdd(const AliMUONVStore& store, TArrayI* nevents, Bool_t replace);
194
195   void GetDEManu(const AliMUONVCalibParam& param,
196                   Int_t& detElemId, Int_t& manuId) const;
197   
198   void AddCalibParams(const AliMUONVCalibParam& src, AliMUONVCalibParam& dest) const;
199
200   void Add2D(const AliMUONVStore& src, AliMUONVStore& dest) const;
201   
202   void Add1D(const AliMUONVStore& src, AliMUONVStore& dest) const;
203   
204 private:
205   
206   Bool_t fIsSingleEvent; ///< whether we can deal with more than one event
207   AliMUONVStore* fChannelValues; ///< the channel store
208   AliMUONVStore* fManuValues; ///< the manu store
209   AliMUONVStore* fBusPatchValues; ///< the bus patch store
210   AliMUONVStore* fDEValues; ///< the detection element store
211   AliMUONVStore* fChamberValues; ///< the chamber store
212   AliMUONVStore* fPCBValues; ///< the pcb store
213   Int_t fDimension; ///< the dimension of the data
214   Int_t fNevents; ///< the number of events treated
215   TObjArray* fDimensionNames; ///< the names of the (internal) dimensions
216   TObjArray* fExternalDimensionNames; ///< the names of the external (i.e. original) dimensions
217   Int_t fExternalDimension; ///< number of interface values per item 
218   /// whether we should histogram the dimension(s)
219   Int_t* fHistogramming; //[fExternalDimension] whether we should histogram the dimension(s)
220   AliMUONVStore* fHistos; ///< the lowest histograms we have
221   Double_t fXmin; ///< min x value for histograms
222   Double_t fXmax; ///< max x value for histograms
223   static const Int_t fgkExtraDimension; ///< to hold extra information
224   static const Int_t fgkVirtualExtraDimension; ///< to give access to information not stored, but computed on the fly
225   Bool_t fIsChannelLevelEnabled; ///< whether we allow storing of channel (fChannelValues) values
226   Bool_t fIsManuLevelEnabled; ///< whether we allow storing of manu (fManuValues) values
227   Int_t fNofDDLs; ///< nof of DDLs we're dealing with
228   /// the number of events treated (per DDL)
229   Int_t* fNofEventsPerDDL; //[fNofDDLs] the number of events treated (per DDL)
230
231   ClassDef(AliMUONTrackerData,7) // Implementation of AliMUONVTrackerData
232 };
233
234 #endif