]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSPreprocessorSDD.h
Preprocessor with new DA
[u/mrichter/AliRoot.git] / ITS / AliITSPreprocessorSDD.h
CommitLineData
e56160b8 1#ifndef ALIITSPREPROCESSORSDD_H
2#define ALIITSPREPROCESSORSDD_H
3
4////////////////////////////////////////////////////
5// Class for the //
6// SDD beam test digit preprocessing //
7// Origin: E. Crescio - crescio@to.infn.it //
8// //
9////////////////////////////////////////////////////
10
11
12#include "AliPreprocessor.h"
13
14
15class AliITSPreprocessorSDD : public AliPreprocessor {
16
17
18 public:
19
4f284dbc 20 AliITSPreprocessorSDD( AliShuttleInterface* shuttle):
21 AliPreprocessor("SDD", shuttle){}
e56160b8 22 virtual ~AliITSPreprocessorSDD(){;}
23
24
25
26 protected:
7537d03c 27
28
e56160b8 29
30 virtual UInt_t Process(TMap* dcsAliasMap);
31
32 static const Int_t fgkNumberOfSDD; // number of SDD modules
33 static const Int_t fgkNumberOfChannels; // number of channels per module
4952f440 34
7537d03c 35 static const TString fgkNameHistoPedestals; //name of ped. histo
36 static const TString fgkNameHistoNoise; //name of noise histo
4952f440 37 ClassDef(AliITSPreprocessorSDD,3) // Alice ITS-SDD preprocessor.
e56160b8 38
39 };
40
41
42
43#endif
44
45