test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
AlgoMuon.cc
Go to the documentation of this file.
2 
3 #include <bitset>
4 #include <iostream>
5 
6 bool AlgoMuon::isValid() const{
7  return m_q >= 0;
8 }
9 
10 bool AlgoMuon::operator< (const AlgoMuon & o) const{
11  if(this->getQ() > o.getQ()) return false;
12  else if(this->getQ()==o.getQ() && this->getDisc() > o.getDisc()) return false;
13  else return true;
14 }
15 
16 std::ostream & operator<< (std::ostream &out, const AlgoMuon &o){
17  out <<"AlgoMuon: ";
18  out << " pt: " << o.getPt()
19  << ", phi: " << o.getPhi()
20  << ", eta: " << o.getEta()*2.61/240
21  << ", hits: " << std::bitset<18>(o.getHits()).to_string()
22  << ", q: " << o.getQ()
23  << ", bx: " << o.getBx()
24  << ", charge: "<< o.getCharge()
25  << ", disc: " << o.getDisc() << " refLayer: " << o.getRefLayer();
26 
27  return out;
28 }
int getCharge() const
Definition: AlgoMuon.h:25
int getEta() const
Definition: AlgoMuon.h:19
int getQ() const
Definition: AlgoMuon.h:22
bool isValid() const
Definition: AlgoMuon.cc:6
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:188
int m_q
Definition: AlgoMuon.h:52
int getDisc() const
Definition: AlgoMuon.h:17
int getBx() const
Definition: AlgoMuon.h:23
int getRefLayer() const
Definition: AlgoMuon.h:20
int getHits() const
Definition: AlgoMuon.h:21
bool operator<(const AlgoMuon &o) const
Definition: AlgoMuon.cc:10
int getPt() const
Definition: AlgoMuon.h:24
int getPhi() const
Definition: AlgoMuon.h:18