]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONResponseTrigger.h
Minor fixes in the event tag to take into account the new way of storing the trigger...
[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  private:
30   static const Float_t fgkTofLimit; // particle above this threshold are discarded
31   ClassDef(AliMUONResponseTrigger,1) // Implementation of RPC response
32     
33 };
34 #endif
35
36
37
38
39
40
41
42
43
44
45
46
47