]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONLocalTrigger.h
Transition to NewIO
[u/mrichter/AliRoot.git] / MUON / AliMUONLocalTrigger.h
CommitLineData
a9e2aefa 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
11class AliMUONLocalTrigger : public TObject {
12 public:
402fb06e 13 AliMUONLocalTrigger();
14 AliMUONLocalTrigger(Int_t *localtr);
15 virtual ~AliMUONLocalTrigger(){;}
16 Int_t LoCircuit();
17 Int_t LoStripX();
18 Int_t LoDev();
19 Int_t LoStripY();
20 Int_t LoLpt();
21 Int_t LoHpt();
22 Int_t LoApt();
23
24 ClassDef(AliMUONLocalTrigger,1) // reconstructed Local Trigger object
25
26private:
a9e2aefa 27 Int_t fLoCircuit; // circuit number
28 Int_t fLoStripX; // X strip in MT11
29 Int_t fLoDev; // deviation
30 Int_t fLoStripY; // Y strip in MT11
31 Int_t fLoLpt; // Low pt 0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef
32 Int_t fLoHpt; // High pt 0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef
33 Int_t fLoApt; // All pt 0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef
402fb06e 34
a9e2aefa 35};
36#endif
37
38
39
40
41
42