]>
Commit | Line | Data |
---|---|---|
5ca85244 | 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: | |
4e25f746 | 17 | AliITSPreprocessorSSD(AliShuttleInterface* shuttle); |
5ca85244 | 18 | virtual ~AliITSPreprocessorSSD() {;} |
19 | enum {kDDLperLDC = 4}; // number of DDLs in LDC | |
20 | ||
21 | protected: | |
a5edfa6f | 22 | |
23 | static const Int_t fgkNumberOfSSD; // number of SSD modules | |
5ca85244 | 24 | virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime); |
25 | virtual UInt_t Process(TMap* dcsAliasMap); | |
26 | ||
27 | private: | |
28 | ClassDef(AliITSPreprocessorSSD, 0); | |
29 | }; | |
30 | ||
31 | #endif |