]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONResponseTrigger.h
Bug fix
[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   /// Set the GenerCluster parameter       
22   virtual Int_t SetGenerCluster(){return 0;}
23
24   virtual void DisIntegrate(const AliMUONHit& hit, TList& digits);
25   
26  private:
27
28   ClassDef(AliMUONResponseTrigger,1) // Implementation of RPC response
29     
30 };
31 #endif
32
33
34
35
36
37
38
39
40
41
42
43
44