Line data Source code
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 : #include "AliMUONTriggerEfficiencyCells.h"
15 : #include "AliMUONTriggerChamberEfficiency.h"
16 :
17 : class AliMUONResponseTrigger : public AliMUONResponse
18 : {
19 : public:
20 : AliMUONResponseTrigger();
21 : virtual ~AliMUONResponseTrigger();
22 :
23 : /// Set the GenerCluster parameter
24 0 : virtual Int_t SetGenerCluster(){return 0;}
25 :
26 : virtual void DisIntegrate(const AliMUONHit& hit, TList& digits, Float_t timeDif);
27 :
28 : private:
29 : /// Not implemented
30 : AliMUONResponseTrigger(const AliMUONResponseTrigger& other);
31 : /// Not implemented
32 : AliMUONResponseTrigger& operator=(const AliMUONResponseTrigger& other); // assignment operator
33 :
34 :
35 24 : ClassDef(AliMUONResponseTrigger,3) // Implementation of RPC response
36 :
37 : };
38 : #endif
|