]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSPreprocessorSDD.h
EMCAL geometry can be created independently form anything now
[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
20 AliITSPreprocessorSDD(const char* detector, AliShuttleInterface* shuttle):
7537d03c 21 AliPreprocessor(detector,shuttle){SetName("SDD");}
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
7537d03c 34 static const TString fgkNameHistoPedestals; //name of ped. histo
35 static const TString fgkNameHistoNoise; //name of noise histo
36 ClassDef(AliITSPreprocessorSDD,2) // Alice ITS-SDD preprocessor.
e56160b8 37
38 };
39
40
41
42#endif
43
44