]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONChamberTrigger.h
No longer needed as all deals with the old IO as well as old digit-cluster structure
[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
9 #include "AliMUONChamber.h"
10
11
12 class AliMUONClusterFinder;
13 class AliMUONSegmentationTrigger ;
14 class AliMUONResponseTrigger ;
15 class AliMUONResponseTriggerV1 ;
16
17 class AliMUONChamberTrigger:
18 public AliMUONChamber {
19  public:
20     AliMUONChamberTrigger();
21     AliMUONChamberTrigger(Int_t id);
22     virtual ~AliMUONChamberTrigger(){}
23 // Cluster formation method (charge disintegration)
24     
25     virtual void   DisIntegration(Float_t eloss, Float_t tof, Float_t xhit, Float_t yhit, Float_t zhit,
26                                 Int_t& nnew, Float_t newclust[6][500]);
27
28   ClassDef(AliMUONChamberTrigger,1) // Muon trigger chamber class
29       };
30 #endif
31
32
33
34
35
36
37
38
39
40
41
42