]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSmoduleSDD.h
Precision parameter for pT sampling plus corresponding getter introduced.
[u/mrichter/AliRoot.git] / ITS / AliITSmoduleSDD.h
CommitLineData
58005f18 1#ifndef ALIITSMODLUESDD_H
2#define ALIITSMODLUESDD_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
58005f18 5
3da30618 6/* $Id$ */
58005f18 7
8#include "AliITS.h"
9#include "AliITSmodule.h"
10
11
12
13//____________________________________________________________________
14//
15// Class AliITSmoduleSDD
16// describes one SDD module
17// The main function of modules is to simulate DIGITS from
18// GEANT HITS and produce POINTS from DIGITS
19//
20// ver. 0.0 CERN, 17.09.1999
21//
22//___________________________________________________________________
23//
24
25
26
27class AliITSmoduleSDD: public AliITSmodule {
28
29
30public:
31
32 //________________________________________________________________
33 //
34 // Constructors and deconstructor
35 //________________________________________________________________
36 //
37
38 AliITSmoduleSDD();
39 AliITSmoduleSDD(Int_t index);
40 ~AliITSmoduleSDD();
41
42 //________________________________________________________________
43 //
44 // Data process methods
45 //________________________________________________________________
46 //
47
48 void HitToDigit() {}; // Not impemented yet
49 void DigitToPoint() {}; // Not impemented yet
50 void HitToPoint() {}; // Not impemented yet
51
52
53
54protected:
55
56public:
57 ClassDef(AliITSmoduleSDD, 1)
58};
59
60#endif