]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONLocalTrigger.h
Coding conventions.
[u/mrichter/AliRoot.git] / MUON / AliMUONLocalTrigger.h
1 #ifndef ALIMUONLOCALTRIGGER_H
2 #define ALIMUONLOCALTRIGGER_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8 // Revision of includes 07/05/2004
9
10 #include <TObject.h>
11
12 class AliMUONLocalTrigger : public TObject {
13  public:
14   AliMUONLocalTrigger();
15   AliMUONLocalTrigger(const AliMUONLocalTrigger& rhs); // copy constructor !
16   AliMUONLocalTrigger(Int_t *localtr);
17   virtual ~AliMUONLocalTrigger(){;}
18   AliMUONLocalTrigger& operator=(const AliMUONLocalTrigger& rhs); 
19
20   Int_t LoCircuit() const {return fLoCircuit;}; 
21   Int_t LoStripX() const {return fLoStripX;};    
22   Int_t LoDev() const {return fLoDev;};     
23   Int_t LoStripY() const {return fLoStripY;};  
24   Int_t LoLpt() const {return fLoLpt;};     
25   Int_t LoHpt() const {return fLoHpt;};     
26   Int_t LoApt() const {return fLoApt;};    
27
28   ClassDef(AliMUONLocalTrigger,1)  // reconstructed Local Trigger object
29
30 private:
31   Int_t fLoCircuit; // circuit number 
32   Int_t fLoStripX;  // X strip in MT11 
33   Int_t fLoDev;     // deviation 
34   Int_t fLoStripY;  // Y strip in MT11 
35   Int_t fLoLpt;     // Low pt  0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef
36   Int_t fLoHpt;     // High pt 0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef
37   Int_t fLoApt;     // All pt  0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef
38    
39 };
40 #endif
41
42
43
44
45
46