#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: AliMUONLocalTrigger(); AliMUONLocalTrigger(Int_t *localtr); virtual ~AliMUONLocalTrigger(){;} Int_t LoCircuit(); Int_t LoStripX(); Int_t LoDev(); Int_t LoStripY(); Int_t LoLpt(); Int_t LoHpt(); Int_t LoApt(); ClassDef(AliMUONLocalTrigger,1) // reconstructed Local Trigger object private: 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 }; #endif