]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ACORDE/AliACORDEPreprocessor.h
Support for references to tracks added.
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEPreprocessor.h
CommitLineData
cc1629e1 1#ifndef ALI_ACORDE_PREPROCESSOR_H
2#define ALI_ACORDE_PREPROCESSOR_H
3
4#include "AliPreprocessor.h"
5
6// test preprocessor that writes data to AliACORDECalibModule
7
8class AliACORDECalibModule;
9
10class AliACORDEPreprocessor : public AliPreprocessor
11{
12 public:
13 enum{kNModules=60};
14 AliACORDEPreprocessor(AliShuttleInterface* shuttle);
15 virtual ~AliACORDEPreprocessor();
16
17 protected:
18 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
19 virtual UInt_t Process(TMap* dcsAliasMap);
20 void CreateTableofReference();
21 //virtual Bool_t ProcessDCS();
22
23 private:
24
25 AliACORDEPreprocessor(const AliACORDEPreprocessor &proc); //copy constructor
26 AliACORDEPreprocessor& operator = (const AliACORDEPreprocessor & proc);
27 AliACORDECalibModule *fCalData; // CDB class that stores the data
28
29 ClassDef(AliACORDEPreprocessor, 0);
30};
31
32#endif