Line data Source code
1 : #ifndef ALITRDCALMONITORING_H
2 : #define ALITRDCALMONITORING_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 : ///////////////////////////////////////////////////////////////////////////////
9 : // //
10 : // TRD calibration class for monitoring data //
11 : // //
12 : ///////////////////////////////////////////////////////////////////////////////
13 :
14 : #include "TNamed.h"
15 :
16 0 : class AliTRDCalMonitoring : public TNamed {
17 :
18 : public:
19 :
20 : AliTRDCalMonitoring();
21 : AliTRDCalMonitoring(const Text_t* name, const Text_t* title);
22 0 : virtual ~AliTRDCalMonitoring() {};
23 :
24 : protected:
25 :
26 : Int_t fADCTresholds[6700]; // Threshold voltage for ADCs
27 : Float_t fDriftVelocity; // Drift velocity from the monitor
28 : TString fGasComposition; // Gas composition
29 : Float_t fEnvironmentTemperature; // Environment temperature
30 :
31 : Float_t fAnodeCurrentsMin[540]; // Minimum anode current
32 : Float_t fAnodeCurrentsMax[540]; // Maximum anode current
33 : Float_t fDriftCurrentsMin[540]; // Minimum drift current
34 : Float_t fDriftCurrentsMax[540]; // Maximum drift current
35 : Float_t fAnodeVoltagesMin[540]; // Minimum anode voltage
36 : Float_t fAnodeVoltagesMax[540]; // Maximum anode voltage
37 : Float_t fDriftVoltagesMin[540]; // Minimum drift voltage
38 : Float_t fDriftVoltagesMax[540]; // Maximum drift voltage
39 :
40 : Float_t fLVVoltage[360]; // Low voltage
41 : Float_t fLVCurrent[360]; // Low voltage current
42 :
43 64 : ClassDef(AliTRDCalMonitoring,1) // TRD calibration class for global TRD parameters
44 :
45 : };
46 :
47 : #endif
|