]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONResponseTrigger.h
Removing obsolete constants.
[u/mrichter/AliRoot.git] / MUON / AliMUONResponseTrigger.h
1 #ifndef ALIMUONRESPONSETRIGGER_H
2 #define ALIMUONRESPONSETRIGGER_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7 // Revision of includes 07/05/2004
8
9 /// \ingroup sim
10 /// \class AliMUONResponseTrigger
11 /// \brief Implementation of RPC response
12
13 #include "AliMUONResponse.h"
14
15 class AliMUONResponseTrigger : public AliMUONResponse
16 {
17  public:
18   AliMUONResponseTrigger();
19   virtual ~AliMUONResponseTrigger(){} 
20
21   virtual Int_t DigitResponse(Int_t digit, AliMUONTransientDigit* where) const;
22
23
24   // Set the GenerCluster parameter       
25   virtual Int_t SetGenerCluster(){return 0;}
26
27   virtual void DisIntegrate(const AliMUONHit& hit, TList& digits);
28
29   static const Float_t fgkTofLimit;  ///< Particle above this threshold are discarded
30   
31  private:
32
33   ClassDef(AliMUONResponseTrigger,1) ///< Implementation of RPC response
34     
35 };
36 #endif
37
38
39
40
41
42
43
44
45
46
47
48
49