#ifndef ALIMUONLOCALTRIGGER_H #define ALIMUONLOCALTRIGGER_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* */ #include class AliMUONLocalTrigger : public TObject { public: Int_t fLoCircuit; // circuit number Int_t fLoStripX; // X strip in MT11 Int_t fLoDev; // deviation Int_t fLoStripY; // Y strip in MT11 Int_t fLoLpt; // Low pt 0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef Int_t fLoHpt; // High pt 0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef Int_t fLoApt; // All pt 0 : nothing, 1 : Minus, 2 : Plus, 3 : Undef public: AliMUONLocalTrigger(); AliMUONLocalTrigger(Int_t *localtr); virtual ~AliMUONLocalTrigger(){;} ClassDef(AliMUONLocalTrigger,1) // reconstructed Local Trigger object }; #endif