CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
EcalRecHit.cc File Reference
#include "DataFormats/EcalRecHit/interface/EcalRecHit.h"
#include "DataFormats/EcalDetId/interface/EBDetId.h"
#include "DataFormats/EcalDetId/interface/EEDetId.h"
#include "DataFormats/EcalDetId/interface/ESDetId.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <cassert>
#include <math.h>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &s, const EcalRecHit &hit)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  s,
const EcalRecHit hit 
)

Definition at line 10 of file EcalRecHit.cc.

References DetId::det(), EcalRecHit::detid(), DetId::Ecal, EcalBarrel, EcalEndcap, EcalPreshower, EcalRecHit::energy(), DetId::subdetId(), and EcalRecHit::time().

10  {
11  if (hit.detid().det() == DetId::Ecal && hit.detid().subdetId() == EcalBarrel)
12  return s << EBDetId(hit.detid()) << ": " << hit.energy() << " GeV, " << hit.time() << " ns";
13  else if (hit.detid().det() == DetId::Ecal && hit.detid().subdetId() == EcalEndcap)
14  return s << EEDetId(hit.detid()) << ": " << hit.energy() << " GeV, " << hit.time() << " ns";
15  else if (hit.detid().det() == DetId::Ecal && hit.detid().subdetId() == EcalPreshower)
16  return s << ESDetId(hit.detid()) << ": " << hit.energy() << " GeV, " << hit.time() << " ns";
17  else
18  return s << "EcalRecHit undefined subdetector" ;
19 }
const DetId & detid() const
Definition: EcalRecHit.h:71
float time() const
Definition: EcalRecHit.h:70
float energy() const
Definition: EcalRecHit.h:68
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
Detector det() const
get the detector field from this detid
Definition: DetId.h:35