]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSmoduleSPD.h
New version of ITS for the TDR
[u/mrichter/AliRoot.git] / ITS / AliITSmoduleSPD.h
1 #ifndef ALIITSMODLUESPD_H
2 #define ALIITSMODLUESPD_H
3
4
5 #include "AliITS.h"
6 #include "AliITSmodule.h"
7
8
9
10 //____________________________________________________________________
11 //
12 //  Class AliITSmoduleSPD
13 //  describes one SPD module
14 //  The main function of modules is to simulate DIGITS from  
15 //  GEANT HITS and produce POINTS from DIGITS
16 //                   
17 //  ver. 0.0    CERN, 17.09.1999  
18 // 
19 //___________________________________________________________________
20 //
21
22
23
24 class AliITSmoduleSPD: public AliITSmodule {
25
26     
27 public:       
28     
29     //________________________________________________________________
30     //
31     // Constructors and deconstructor
32     //________________________________________________________________
33     //
34     
35     AliITSmoduleSPD();
36     AliITSmoduleSPD(Int_t index);
37     ~AliITSmoduleSPD();
38   
39     //________________________________________________________________
40     //
41     // Data process methods
42     //________________________________________________________________
43     //
44     
45     void HitToDigit() {};              // Not impemented yet
46     void DigitToPoint() {};            // Not impemented yet
47     void HitToPoint() {};              // Not impemented yet
48     
49        
50   
51 protected:
52
53 public:
54     ClassDef(AliITSmoduleSPD, 1)
55 };
56
57 #endif