]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSmoduleSDD.h
Introduction of the Copyright and cvs Log
[u/mrichter/AliRoot.git] / ITS / AliITSmoduleSDD.h
CommitLineData
58005f18 1#ifndef ALIITSMODLUESDD_H
2#define ALIITSMODLUESDD_H
3
4
5#include "AliITS.h"
6#include "AliITSmodule.h"
7
8
9
10//____________________________________________________________________
11//
12// Class AliITSmoduleSDD
13// describes one SDD 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
24class AliITSmoduleSDD: public AliITSmodule {
25
26
27public:
28
29 //________________________________________________________________
30 //
31 // Constructors and deconstructor
32 //________________________________________________________________
33 //
34
35 AliITSmoduleSDD();
36 AliITSmoduleSDD(Int_t index);
37 ~AliITSmoduleSDD();
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
51protected:
52
53public:
54 ClassDef(AliITSmoduleSDD, 1)
55};
56
57#endif