]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONChamberTrigger.h
Adapting digitalizatio ncode to the new segmentation (Christian, Ivana, Gines, Philippe)
[u/mrichter/AliRoot.git] / MUON / AliMUONChamberTrigger.h
1 #ifndef ALIMUONCHAMBERTRIGGER_H
2 #define ALIMUONCHAMBERTRIGGER_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8 // Revision of includes 07/05/2004
9
10 #include "AliMUONChamber.h"
11
12
13 class AliMUONClusterFinder;
14 class AliMUONSegmentationTrigger;
15 class AliMUONResponseTrigger;
16 class AliMUONResponseTriggerV1;
17 class AliMUONHit;
18
19 class AliMUONChamberTrigger : public AliMUONChamber 
20 {
21   public:
22     AliMUONChamberTrigger();
23     AliMUONChamberTrigger(Int_t id);
24     virtual ~AliMUONChamberTrigger(){}
25     
26     // Cluster formation method (charge disintegration)
27     
28     virtual void   DisIntegration(Float_t eloss, Float_t tof, Float_t xhit, Float_t yhit, Float_t zhit,
29                                 Int_t& nnew, Float_t newclust[6][500]);
30
31     virtual void   DisIntegration(AliMUONHit* hit,
32                                 Int_t& nnew, Float_t newclust[6][500]);
33
34   ClassDef(AliMUONChamberTrigger,1) // Muon trigger chamber class
35 };
36 #endif
37
38
39
40
41
42
43
44
45
46
47
48