CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Functions
HcalHaloAlgo.cc File Reference
#include "FWCore/Framework/interface/ConsumesCollector.h"
#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 19 of file HcalHaloAlgo.cc.

References CaloRecHit::time().

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

Definition at line 20 of file HcalHaloAlgo.cc.

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

Referenced by HcalHaloAlgo::Calculate().

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