]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHPreprocessor.h
Store in ESD mip Q as pTrk->SetRICHnclusters(100000*Q+nphots)
[u/mrichter/AliRoot.git] / RICH / AliRICHPreprocessor.h
CommitLineData
f7c046aa 1#ifndef AliRICHPreprocessor_h
2#define AliRICHPreprocessor_h
3
4#include <AliPreprocessor.h> //base class
5
9de8d990 6class TMap;
f7c046aa 7
8class AliRICHPreprocessor : public AliPreprocessor
9{
10public:
11 AliRICHPreprocessor(AliShuttleInterface* pShuttle):AliPreprocessor("RICH",pShuttle) {}
12 virtual ~AliRICHPreprocessor( ) {}
9de8d990 13 static void Test();
14 static TMap* SimulateDcsMap();
f7c046aa 15protected:
16 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
17 virtual UInt_t Process (TMap* pDcsMap );
9de8d990 18
19 static const Int_t fgkNalias=2;
20 static const char *fgkAliasName[fgkNalias]; //array of DCS alias names
f7c046aa 21 ClassDef(AliRICHPreprocessor, 0);
22};
23
24#endif