# | Line 5 | Line 5 | |
---|---|---|
5 | class MuonObj : public TrackObj { | |
6 | public: | |
7 | MuonObj():TrackObj(),theMuonBits(0) {} | |
8 | < | MuonObj(float pt, float eta, float phi) : TrackObj(pt,eta,phi), theMuonBits(0) {} |
8 | > | MuonObj(float pt, float eta, float phi, float charge) : TrackObj(pt,eta,phi,charge), theMuonBits(0) {} |
9 | virtual ~MuonObj(){} | |
10 | void setBits(bool isGlobal, bool isTracker, bool isOuter, bool isCalo, bool isMatched) { | |
11 | if (isGlobal) theMuonBits = 1 << 4; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |