]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONResponseTrigger.h
Correction of phi range for generators: 0 < phi < 360
[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
8 #include "AliMUONResponseV0.h"
9
10 class AliMUONResponseTrigger : 
11 public AliMUONResponseV0 {
12  public:
13   AliMUONResponseTrigger(){};
14   virtual ~AliMUONResponseTrigger(){} 
15
16   virtual Int_t DigitResponse(Int_t digit, AliMUONTransientDigit* where);
17
18   // Set the GenerCluster parameter       
19   virtual Int_t SetGenerCluster();
20
21   ClassDef(AliMUONResponseTrigger,1) // Implementation of RPC response
22     
23 };
24 #endif
25
26
27
28
29
30
31
32
33
34
35
36
37