CMS 3D CMS Logo

Functions
HcalHaloAlgo.cc File Reference
#include "RecoMET/METAlgorithms/interface/HcalHaloAlgo.h"
#include <map>
#include <iomanip>

Go to the source code of this file.

Functions

bool CompareTime (const HBHERecHit *x, const HBHERecHit *y)
 
bool CompareTowers (const CaloTower *x, const CaloTower *y)
 

Function Documentation

bool CompareTime ( const HBHERecHit x,
const HBHERecHit y 
)

Definition at line 18 of file HcalHaloAlgo.cc.

References CaloRecHit::time().

Referenced by HcalHaloAlgo::Calculate().

18 { return x->time() < y->time() ;}
constexpr float time() const
Definition: CaloRecHit.h:33
bool CompareTowers ( const CaloTower x,
const CaloTower y 
)

Definition at line 19 of file HcalHaloAlgo.cc.

References CaloTower::ieta(), and CaloTower::iphi().

Referenced by HcalHaloAlgo::Calculate().

19  {
20  return x->iphi()*1000 + x->ieta() < y->iphi()*1000 + y->ieta();
21 }
int ieta() const
Definition: CaloTower.h:185
int iphi() const
Definition: CaloTower.h:187