]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONLocalTrigger.h
Correct log and Id tag.
[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 /*    */
8
9 #include <TObject.h>
10
11 class AliMUONLocalTrigger : public TObject {
12  public:
13   Int_t fLoCircuit; // circuit number 
14   Int_t fLoStripX;  // X strip in MT11 
15   Int_t fLoDev;     // deviation 
16   Int_t fLoStripY;  // Y strip in MT11 
17   Int_t fLoLpt;     // Low pt  0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef
18   Int_t fLoHpt;     // High pt 0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef
19   Int_t fLoApt;     // All pt  0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef
20
21  public:
22   AliMUONLocalTrigger();
23   AliMUONLocalTrigger(Int_t *localtr);
24   virtual ~AliMUONLocalTrigger(){;}
25  
26   ClassDef(AliMUONLocalTrigger,1)  // reconstructed Local Trigger object
27     
28 };
29 #endif
30
31
32
33
34
35