Line data Source code
1 : #ifndef ALI_ITS_PREPROCESSOR_SSD_H
2 : #define ALI_ITS_PREPROCESSOR_SSD_H
3 :
4 : #include "AliPreprocessor.h"
5 :
6 : //
7 : // Author: Enrico Fragiacomo
8 : // Date: 13/10/2006
9 : //
10 : // SHUTTLE preprocessing class for SSD calibration files
11 :
12 : /* $Id$ */
13 :
14 : class AliITSPreprocessorSSD : public AliPreprocessor
15 : {
16 : public:
17 : AliITSPreprocessorSSD(AliShuttleInterface* shuttle);
18 0 : virtual ~AliITSPreprocessorSSD() {;}
19 : enum {kDDLperLDC = 4}; // number of DDLs in LDC
20 :
21 : protected:
22 :
23 : static const Int_t fgkNumberOfSSD; // number of SSD modules
24 : virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
25 : virtual UInt_t Process(TMap* dcsAliasMap);
26 :
27 : private:
28 116 : ClassDef(AliITSPreprocessorSSD, 0);
29 : };
30 :
31 : #endif
|