test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Protected Attributes | Static Protected Attributes | Friends
reco::CaloCluster Class Reference

#include <CaloCluster.h>

Inheritance diagram for reco::CaloCluster:
reco::PFCluster reco::PreshowerCluster reco::SuperCluster reco::PFSuperCluster

Public Types

enum  AlgoId {
  island = 0, hybrid = 1, fixedMatrix = 2, dynamicHybrid = 3,
  multi5x5 = 4, particleFlow = 5, undefined = 1000
}
 
typedef AlgoId AlgoID
 
enum  SCFlags { cleanOnly = 0, common = 100, uncleanOnly = 200 }
 

Public Member Functions

void addHitAndFraction (DetId id, float fraction)
 
AlgoId algo () const
 algorithm identifier More...
 
AlgoID algoID () const
 
 CaloCluster ()
 default constructor. Sets energy and position to zero More...
 
 CaloCluster (AlgoID algoID)
 constructor with algoId, to be used in all child classes More...
 
 CaloCluster (double energy, const math::XYZPoint &position, const CaloID &caloID)
 
 CaloCluster (double energy, const math::XYZPoint &position)
 constructor from values More...
 
 CaloCluster (double energy, const math::XYZPoint &position, const CaloID &caloID, const AlgoID &algoID, uint32_t flags=0)
 
 CaloCluster (double energy, const math::XYZPoint &position, const CaloID &caloID, const std::vector< std::pair< DetId, float > > &usedHitsAndFractions, const AlgoId algoId, const DetId seedId=DetId(0), uint32_t flags=0)
 
 CaloCluster (double energy, const math::XYZPoint &position, float chi2, const std::vector< DetId > &usedHits, const AlgoId algoId, uint32_t flags=0)
 temporary compatibility constructor More...
 
const CaloIDcaloID () const
 
double correctedEnergy () const
 
double energy () const
 cluster energy More...
 
double eta () const
 pseudorapidity of cluster centroid More...
 
uint32_t flags () const
 
const std::vector< std::pair
< DetId, float > > & 
hitsAndFractions () const
 
bool isInClean () const
 
bool isInUnclean () const
 
bool operator< (const CaloCluster &rhs) const
 comparison < operator More...
 
bool operator<= (const CaloCluster &rhs) const
 comparison <= operator More...
 
bool operator== (const CaloCluster &rhs) const
 comparison == operator More...
 
bool operator> (const CaloCluster &rhs) const
 comparison > operator More...
 
bool operator>= (const CaloCluster &rhs) const
 comparison >= operator More...
 
double phi () const
 azimuthal angle of cluster centroid More...
 
const math::XYZPointposition () const
 cluster centroid position More...
 
std::string printHitAndFraction (unsigned i) const
 print hitAndFraction More...
 
void reset ()
 resets the CaloCluster (position, energy, hitsAndFractions) More...
 
DetId seed () const
 return DetId of seed More...
 
void setAlgoId (const AlgoId &id)
 
void setCaloId (const CaloID &id)
 
void setCorrectedEnergy (double cenergy)
 
void setEnergy (double energy)
 
void setFlags (uint32_t flags)
 
void setPosition (const math::XYZPoint &p)
 
void setSeed (const DetId &id)
 
size_t size () const
 size in number of hits (e.g. in crystals for ECAL) More...
 
double x () const
 x coordinate of cluster centroid More...
 
double y () const
 y coordinate of cluster centroid More...
 
double z () const
 z coordinate of cluster centroid More...
 
virtual ~CaloCluster ()
 destructor More...
 

Protected Attributes

AlgoID algoID_
 
CaloID caloID_
 bitmask for detector information More...
 
double correctedEnergy_
 
double energy_
 cluster energy More...
 
uint32_t flags_
 
std::vector< std::pair< DetId,
float > > 
hitsAndFractions_
 
math::XYZPoint position_
 cluster centroid position More...
 
DetId seedId_
 DetId of seed. More...
 

Static Protected Attributes

static const uint32_t flagsMask_ =0x0FFFFFFF
 
static const uint32_t flagsOffset_ =28
 

Friends

std::ostream & operator<< (std::ostream &out, const CaloCluster &cluster)
 print me More...
 

Detailed Description

Base class for all types calorimeter clusters

Author
Shahram Rahatlou, INFN

Comments: modified AlgoId enumeration to include cleaning status flags In summary: algoID_ < 200 object is in clean collection algoID_ >=100 object is in unclean collection

Definition at line 29 of file CaloCluster.h.

Member Typedef Documentation

Definition at line 39 of file CaloCluster.h.

Member Enumeration Documentation

Enumerator
island 
hybrid 
fixedMatrix 
dynamicHybrid 
multi5x5 
particleFlow 
undefined 

Definition at line 32 of file CaloCluster.h.

Enumerator
cleanOnly 
common 
uncleanOnly 

Definition at line 35 of file CaloCluster.h.

Constructor & Destructor Documentation

reco::CaloCluster::CaloCluster ( )
inline

default constructor. Sets energy and position to zero

Definition at line 42 of file CaloCluster.h.

42  :
43  energy_(0), correctedEnergy_(-1.0),
44  algoID_( undefined ), flags_(0) {}
double energy_
cluster energy
Definition: CaloCluster.h:205
double correctedEnergy_
Definition: CaloCluster.h:206
reco::CaloCluster::CaloCluster ( AlgoID  algoID)
inline

constructor with algoId, to be used in all child classes

Definition at line 47 of file CaloCluster.h.

47  :
48  energy_(0), correctedEnergy_(-1.0),
49  algoID_( algoID ), flags_(0) {}
double energy_
cluster energy
Definition: CaloCluster.h:205
AlgoID algoID() const
Definition: CaloCluster.h:171
double correctedEnergy_
Definition: CaloCluster.h:206
reco::CaloCluster::CaloCluster ( double  energy,
const math::XYZPoint position,
const CaloID caloID 
)
inline

Definition at line 51 of file CaloCluster.h.

53  :
const math::XYZPoint & position() const
cluster centroid position
Definition: CaloCluster.h:124
math::XYZPoint position_
cluster centroid position
Definition: CaloCluster.h:209
CaloID caloID_
bitmask for detector information
Definition: CaloCluster.h:212
double energy_
cluster energy
Definition: CaloCluster.h:205
double correctedEnergy_
Definition: CaloCluster.h:206
const CaloID & caloID() const
Definition: CaloCluster.h:181
double energy() const
cluster energy
Definition: CaloCluster.h:120
reco::CaloCluster::CaloCluster ( double  energy,
const math::XYZPoint position 
)
inline

constructor from values

Definition at line 61 of file CaloCluster.h.

62  :
const math::XYZPoint & position() const
cluster centroid position
Definition: CaloCluster.h:124
math::XYZPoint position_
cluster centroid position
Definition: CaloCluster.h:209
double energy_
cluster energy
Definition: CaloCluster.h:205
double correctedEnergy_
Definition: CaloCluster.h:206
double energy() const
cluster energy
Definition: CaloCluster.h:120
reco::CaloCluster::CaloCluster ( double  energy,
const math::XYZPoint position,
const CaloID caloID,
const AlgoID algoID,
uint32_t  flags = 0 
)
inline

Definition at line 66 of file CaloCluster.h.

References flags(), flags_, and flagsMask_.

70  :
74  }
const math::XYZPoint & position() const
cluster centroid position
Definition: CaloCluster.h:124
math::XYZPoint position_
cluster centroid position
Definition: CaloCluster.h:209
CaloID caloID_
bitmask for detector information
Definition: CaloCluster.h:212
double energy_
cluster energy
Definition: CaloCluster.h:205
AlgoID algoID() const
Definition: CaloCluster.h:171
double correctedEnergy_
Definition: CaloCluster.h:206
const CaloID & caloID() const
Definition: CaloCluster.h:181
uint32_t flags() const
Definition: CaloCluster.h:173
double energy() const
cluster energy
Definition: CaloCluster.h:120
static const uint32_t flagsMask_
Definition: CaloCluster.h:228
reco::CaloCluster::CaloCluster ( double  energy,
const math::XYZPoint position,
const CaloID caloID,
const std::vector< std::pair< DetId, float > > &  usedHitsAndFractions,
const AlgoId  algoId,
const DetId  seedId = DetId(0),
uint32_t  flags = 0 
)
inline

Definition at line 76 of file CaloCluster.h.

References flags(), flags_, and flagsMask_.

82  :
84  hitsAndFractions_(usedHitsAndFractions), algoID_(algoId),seedId_(seedId){
86  }
const math::XYZPoint & position() const
cluster centroid position
Definition: CaloCluster.h:124
math::XYZPoint position_
cluster centroid position
Definition: CaloCluster.h:209
CaloID caloID_
bitmask for detector information
Definition: CaloCluster.h:212
double energy_
cluster energy
Definition: CaloCluster.h:205
double correctedEnergy_
Definition: CaloCluster.h:206
std::vector< std::pair< DetId, float > > hitsAndFractions_
Definition: CaloCluster.h:215
const CaloID & caloID() const
Definition: CaloCluster.h:181
uint32_t flags() const
Definition: CaloCluster.h:173
DetId seedId_
DetId of seed.
Definition: CaloCluster.h:221
double energy() const
cluster energy
Definition: CaloCluster.h:120
static const uint32_t flagsMask_
Definition: CaloCluster.h:228
reco::CaloCluster::CaloCluster ( double  energy,
const math::XYZPoint position,
float  chi2,
const std::vector< DetId > &  usedHits,
const AlgoId  algoId,
uint32_t  flags = 0 
)
inline

temporary compatibility constructor

Definition at line 90 of file CaloCluster.h.

References flags(), flags_, flagsMask_, hitsAndFractions_, and i.

95  :
97  {
98  hitsAndFractions_.reserve(usedHits.size());
99  for(size_t i = 0; i < usedHits.size(); i++) hitsAndFractions_.push_back(std::pair< DetId, float > ( usedHits[i],1.));
101  }
const math::XYZPoint & position() const
cluster centroid position
Definition: CaloCluster.h:124
int i
Definition: DBlmapReader.cc:9
math::XYZPoint position_
cluster centroid position
Definition: CaloCluster.h:209
double energy_
cluster energy
Definition: CaloCluster.h:205
double correctedEnergy_
Definition: CaloCluster.h:206
std::vector< std::pair< DetId, float > > hitsAndFractions_
Definition: CaloCluster.h:215
uint32_t flags() const
Definition: CaloCluster.h:173
double energy() const
cluster energy
Definition: CaloCluster.h:120
static const uint32_t flagsMask_
Definition: CaloCluster.h:228
virtual reco::CaloCluster::~CaloCluster ( )
inlinevirtual

destructor

Definition at line 105 of file CaloCluster.h.

105 {}

Member Function Documentation

void reco::CaloCluster::addHitAndFraction ( DetId  id,
float  fraction 
)
inline

Definition at line 183 of file CaloCluster.h.

References hitsAndFractions_.

Referenced by reco::PFCluster::addRecHitFraction(), PFEGammaAlgo::buildRefinedSuperCluster(), PFECALSuperClusterAlgo::buildSuperCluster(), PFElectronTranslator::createSuperClusters(), and PFPhotonTranslator::createSuperClusters().

183  {
184  hitsAndFractions_.push_back( std::pair<DetId, float>(id, fraction) );
185  }
std::vector< std::pair< DetId, float > > hitsAndFractions_
Definition: CaloCluster.h:215
AlgoId reco::CaloCluster::algo ( ) const
inline

algorithm identifier

Definition at line 170 of file CaloCluster.h.

References algoID_.

Referenced by algoID(), PFElectronTranslator::createBasicCluster(), and PFPhotonTranslator::createBasicCluster().

170 { return algoID_; }
AlgoID reco::CaloCluster::algoID ( ) const
inline

Definition at line 171 of file CaloCluster.h.

References algo().

171 { return algo(); }
AlgoId algo() const
algorithm identifier
Definition: CaloCluster.h:170
const CaloID& reco::CaloCluster::caloID ( ) const
inline

Definition at line 181 of file CaloCluster.h.

References caloID_.

Referenced by PFElectronTranslator::createBasicCluster(), PFPhotonTranslator::createBasicCluster(), and reco::PFCluster::layer().

181 {return caloID_;}
CaloID caloID_
bitmask for detector information
Definition: CaloCluster.h:212
double reco::CaloCluster::correctedEnergy ( ) const
inline
double reco::CaloCluster::energy ( ) const
inline

cluster energy

Definition at line 120 of file CaloCluster.h.

References energy_.

Referenced by ESRecoSummary::analyze(), GenPurposeSkimmerData::analyze(), ErsatzMEt::analyze(), EgammaSCEnergyCorrectionAlgo::applyCorrection(), HiEgammaSCEnergyCorrectionAlgo::applyCorrection(), EgammaSCEnergyCorrectionAlgo::applyCrackCorrection(), EgammaSCEnergyCorrectionAlgo::applyLocalContCorrection(), ConvertedPhotonProducer::buildCollections(), ConversionTrackCandidateProducer::buildCollections(), PFECALSuperClusterAlgo::buildSuperCluster(), SuperClusterShapeAlgo::Calculate_Covariances(), converter::SuperClusterToCandidate::convert(), HFRecoEcalCandidateAlgo::correctEPosition(), GsfElectronAlgo::createElectron(), DetectorVector(), reco::PreshowerCluster::et(), fBremScCorr(), ZeeCalibration::fillEleInfo(), PFEGammaAlgo::fillPFCandidates(), FastElectronSeedProducer::filterClusters(), ElectronSeedProducer::filterClusters(), EcalClusterSeverityLevelAlgo::fractionAroundClosestProblematic(), EcalClusterEnergyCorrection::getValue(), EcalClusterEnergyUncertainty::getValue(), EcalClusterEnergyUncertaintyObjectSpecific::getValue(), EcalClusterCrackCorrection::getValue(), EcalClusterSeverityLevelAlgo::goodFraction(), EcalClusterLocal::localCoordsEB(), EcalClusterLocal::localCoordsEE(), Multi5x5BremRecoveryClusterAlgo::makeIslandSuperClusters(), PreshowerClusterAlgo::makeOneCluster(), OutInConversionSeedFinder::makeSeeds(), HybridClusterAlgo::makeSuperClusters(), SuperClusterEt::operator()(), ClusterEtLess::operator()(), HoECalculator::operator()(), reco::PreshowerCluster::operator<(), PhysicsVector(), UnifiedSCCollectionProducer::produce(), UncleanSCRecoveryProducer::produce(), EcalDigiSelector::produce(), ElectronRecalibSuperClusterAssociator::produce(), PreshowerPhiClusterProducer::produce(), PreshowerClusterProducer::produce(), HFRecoEcalCandidateAlgo::produce(), SiStripElectronProducer::produce(), HiEgammaSCCorrectionMaker::produce(), EgammaSCCorrectionMaker::produce(), SuperClusterHelper::seedEnergy(), setEnergy(), SuperClusterHelper::sortClusters(), and SuperClusterHelper::SuperClusterHelper().

120 { return energy_; }
double energy_
cluster energy
Definition: CaloCluster.h:205
double reco::CaloCluster::eta ( ) const
inline

pseudorapidity of cluster centroid

Definition at line 161 of file CaloCluster.h.

References position_.

Referenced by HLTEgamma::analyze(), GenPurposeSkimmerData::analyze(), ErsatzMEt::analyze(), HiEgammaSCEnergyCorrectionAlgo::applyCorrection(), ConversionTrackCandidateProducer::buildCollections(), EgammaSuperClusters::closestMCParticle(), EgammaTowerIsolationNew< NC >::compute(), HFRecoEcalCandidateAlgo::correctEPosition(), DetectorVector(), EcalClusterLazyToolsBase::eseffsirir(), EcalClusterLazyToolsBase::eseffsixix(), EcalClusterLazyToolsBase::eseffsiyiy(), reco::PreshowerCluster::et(), SuperClusterHelper::eta(), fBremScCorr(), fEtaScCorr(), fEtEtaCorr(), FastElectronSeedProducer::filterClusters(), RegressionHelper::getEcalRegression(), EcalClusterEnergyCorrection::getValue(), EcalClusterEnergyUncertaintyObjectSpecific::getValue(), EcalClusterEnergyUncertainty::getValue(), EcalClusterCrackCorrection::getValue(), EcalClusterEnergyCorrectionObjectSpecific::getValue(), EgammaHLTEcalIsolation::isolPtSum(), EcalClusterLocal::localCoordsEE(), PreshowerClusterAlgo::makeOneCluster(), superClsterEtaLess::operator()(), UnifiedSCCollectionProducer::produce(), UncleanSCRecoveryProducer::produce(), EcalDigiSelector::produce(), EgammaHLTHcalPFClusterIsolationProducer::produce(), HFRecoEcalCandidateAlgo::produce(), SuperClusterHelper::seedEta(), BaselinePFSCRegression::set(), FWPFBlockProxyBuilder::setupClusterElement(), FWPFClusterLegoProxyBuilder::sharedBuild(), FWECALDetailViewBuilder::superClusterEtaLess(), and SuperClusterHelper::SuperClusterHelper().

161 { return position_.eta(); }
math::XYZPoint position_
cluster centroid position
Definition: CaloCluster.h:209
uint32_t reco::CaloCluster::flags ( ) const
inline
const std::vector< std::pair<DetId, float> >& reco::CaloCluster::hitsAndFractions ( ) const
inline
bool reco::CaloCluster::isInClean ( ) const
inline

Definition at line 178 of file CaloCluster.h.

References flags(), and uncleanOnly.

Referenced by UnifiedSCCollectionProducer::produce(), and UncleanSCRecoveryProducer::produce().

178 { return flags() < uncleanOnly; }
uint32_t flags() const
Definition: CaloCluster.h:173
bool reco::CaloCluster::isInUnclean ( ) const
inline

Definition at line 179 of file CaloCluster.h.

References common, and flags().

Referenced by UnifiedSCCollectionProducer::produce(), and UncleanSCRecoveryProducer::produce().

179 { return flags() >= common; }
uint32_t flags() const
Definition: CaloCluster.h:173
bool reco::CaloCluster::operator< ( const CaloCluster rhs) const
inline

comparison < operator

Definition at line 142 of file CaloCluster.h.

References energy_.

142  {
143  return (energy_< rhs.energy_);
144  }
double energy_
cluster energy
Definition: CaloCluster.h:205
bool reco::CaloCluster::operator<= ( const CaloCluster rhs) const
inline

comparison <= operator

Definition at line 137 of file CaloCluster.h.

References energy_.

137  {
138  return (energy_<=rhs.energy_);
139  }
double energy_
cluster energy
Definition: CaloCluster.h:205
bool reco::CaloCluster::operator== ( const CaloCluster rhs) const
inline

comparison == operator

Definition at line 147 of file CaloCluster.h.

References energy_.

147  {
148  return (energy_ == rhs.energy_);
149  };
double energy_
cluster energy
Definition: CaloCluster.h:205
bool reco::CaloCluster::operator> ( const CaloCluster rhs) const
inline

comparison > operator

Definition at line 132 of file CaloCluster.h.

References energy_.

132  {
133  return (energy_> rhs.energy_);
134  }
double energy_
cluster energy
Definition: CaloCluster.h:205
bool reco::CaloCluster::operator>= ( const CaloCluster rhs) const
inline

comparison >= operator

Definition at line 127 of file CaloCluster.h.

References energy_.

127  {
128  return (energy_>=rhs.energy_);
129  }
double energy_
cluster energy
Definition: CaloCluster.h:205
double reco::CaloCluster::phi ( ) const
inline
const math::XYZPoint& reco::CaloCluster::position ( ) const
inline

cluster centroid position

Definition at line 124 of file CaloCluster.h.

References position_.

Referenced by ContainmentCorrectionAnalyzer::analyze(), HiEgammaSCEnergyCorrectionAlgo::applyCorrection(), ConversionTrackCandidateProducer::buildCollections(), PFECALSuperClusterAlgo::buildSuperCluster(), SuperClusterShapeAlgo::Calculate_Covariances(), converter::SuperClusterToCandidate::convert(), PFElectronTranslator::createBasicCluster(), PFPhotonTranslator::createBasicCluster(), GsfElectronAlgo::createElectron(), egammaisolation::EgammaEcalExtractor::deposit(), fBremScCorr(), fEAddScCorr(), fEtaScCorr(), fEtEtaCorr(), ZeeCalibration::fillEleInfo(), PFEGammaAlgo::fillPFCandidates(), ElectronSeedProducer::filterClusters(), InOutConversionSeedFinder::findSeeds(), EgammaEcalIsolation::getEcalEtSum(), EgammaHcalIsolation::getHcalESum(), EgammaHcalIsolation::getHcalESumDepth1(), EgammaHcalIsolation::getHcalESumDepth2(), EgammaHcalIsolation::getHcalEtSum(), EgammaHcalIsolation::getHcalEtSumDepth1(), EgammaHcalIsolation::getHcalEtSumDepth2(), EgammaRecHitIsolation::getSum_(), EcalClusterCrackCorrection::getValue(), PFlow2DClusterizerWithTime::growPFClusters(), PFElecTkProducer::isSharingEcalEnergyWithEgSC(), EcalClusterLocal::localCoordsEB(), EcalClusterLocal::localCoordsEE(), Multi5x5BremRecoveryClusterAlgo::makeIslandSuperClusters(), PreshowerClusterAlgo::makeOneCluster(), OutInConversionSeedFinder::makeSeeds(), ConversionTools::matchesConversion(), SuperClusterEt::operator()(), ClusterEtLess::operator()(), reco::PreshowerCluster::operator<(), reco::PreshowerCluster::operator==(), PhysicsVector(), PhysicsVectorRaw(), UncleanSCRecoveryProducer::produce(), ElectronRecalibSuperClusterAssociator::produce(), EgammaSCCorrectionMaker::produce(), HiEgammaSCCorrectionMaker::produce(), PFAlgo::reconstructCluster(), KDTreeLinkerPSEcal::searchLinks(), InOutConversionSeedFinder::startSeed(), LinkByRecHit::testECALAndPSByRecHit(), LinkByRecHit::testHFEMAndHFHADByRecHit(), and LinkByRecHit::testTrackAndClusterByRecHit().

124 { return position_; }
math::XYZPoint position_
cluster centroid position
Definition: CaloCluster.h:209
string CaloCluster::printHitAndFraction ( unsigned  i) const

print hitAndFraction

Definition at line 17 of file CaloCluster.cc.

References i, dbtoconf::out, and findQualityFiles::size.

17  {
18 
19  ostringstream out;
20  if( i>=hitsAndFractions().size() ) // i >= 0, since i is unsigned
21  out<<"out of range "<<i;
22  else
23  out<<"( "<<hitsAndFractions()[i].first
24  <<", "<<hitsAndFractions()[i].second
25  <<" )";
26  return out.str();
27 }
int i
Definition: DBlmapReader.cc:9
const std::vector< std::pair< DetId, float > > & hitsAndFractions() const
Definition: CaloCluster.h:190
tuple out
Definition: dbtoconf.py:99
size_t size() const
size in number of hits (e.g. in crystals for ECAL)
Definition: CaloCluster.h:167
void CaloCluster::reset ( void  )

resets the CaloCluster (position, energy, hitsAndFractions)

Definition at line 11 of file CaloCluster.cc.

Referenced by reco::PFCluster::reset().

11  {
13  energy_ = 0;
14  hitsAndFractions_.clear();
15 }
math::XYZPoint position_
cluster centroid position
Definition: CaloCluster.h:209
double energy_
cluster energy
Definition: CaloCluster.h:205
std::vector< std::pair< DetId, float > > hitsAndFractions_
Definition: CaloCluster.h:215
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
DetId reco::CaloCluster::seed ( ) const
inline
void reco::CaloCluster::setAlgoId ( const AlgoId id)
inline

Definition at line 115 of file CaloCluster.h.

References algoID_.

115 {algoID_=id;}
void reco::CaloCluster::setCaloId ( const CaloID id)
inline

Definition at line 113 of file CaloCluster.h.

References caloID_.

113 {caloID_= id;}
CaloID caloID_
bitmask for detector information
Definition: CaloCluster.h:212
void reco::CaloCluster::setCorrectedEnergy ( double  cenergy)
inline
void reco::CaloCluster::setEnergy ( double  energy)
inline
void reco::CaloCluster::setFlags ( uint32_t  flags)
inline

Definition at line 174 of file CaloCluster.h.

References flags_, and flagsMask_.

Referenced by Vispa.Plugins.EdmBrowser.EventContentView.LabelItem::__init__(), HiEgammaSCEnergyCorrectionAlgo::applyCorrection(), UnifiedSCCollectionProducer::produce(), and UncleanSCRecoveryProducer::produce().

174  {
175  uint32_t reserved = (flags_ & ~flagsMask_);
176  flags_ = (reserved ) | (flags & flagsMask_);
177  }
uint32_t flags() const
Definition: CaloCluster.h:173
static const uint32_t flagsMask_
Definition: CaloCluster.h:228
void reco::CaloCluster::setPosition ( const math::XYZPoint p)
inline
void reco::CaloCluster::setSeed ( const DetId id)
inline
size_t reco::CaloCluster::size ( void  ) const
inline

size in number of hits (e.g. in crystals for ECAL)

Definition at line 167 of file CaloCluster.h.

References hitsAndFractions_.

Referenced by HiEgammaSCEnergyCorrectionAlgo::applyCorrection(), ReducedEGProducer::produce(), and AlCaECALRecHitReducer::produce().

167 { return hitsAndFractions_.size(); }
std::vector< std::pair< DetId, float > > hitsAndFractions_
Definition: CaloCluster.h:215
double reco::CaloCluster::x ( ) const
inline
double reco::CaloCluster::y ( ) const
inline
double reco::CaloCluster::z ( ) const
inline

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  out,
const CaloCluster cluster 
)
friend

print me

Member Data Documentation

AlgoID reco::CaloCluster::algoID_
protected

Definition at line 218 of file CaloCluster.h.

Referenced by algo(), and setAlgoId().

CaloID reco::CaloCluster::caloID_
protected

bitmask for detector information

Definition at line 212 of file CaloCluster.h.

Referenced by caloID(), setCaloId(), and reco::PFCluster::setLayer().

double reco::CaloCluster::correctedEnergy_
protected

Definition at line 206 of file CaloCluster.h.

Referenced by correctedEnergy(), and setCorrectedEnergy().

double reco::CaloCluster::energy_
protected
uint32_t reco::CaloCluster::flags_
protected

flags (e.g. for handling of cleaned/uncleaned SC) 4 most significant bits reserved 28 bits for handling of cleaned/uncleaned

Definition at line 226 of file CaloCluster.h.

Referenced by CaloCluster(), flags(), reco::SuperCluster::getPreshowerPlanesStatus(), setFlags(), and reco::SuperCluster::setPreshowerPlanesStatus().

const uint32_t reco::CaloCluster::flagsMask_ =0x0FFFFFFF
staticprotected
const uint32_t reco::CaloCluster::flagsOffset_ =28
staticprotected
std::vector< std::pair<DetId, float> > reco::CaloCluster::hitsAndFractions_
protected
math::XYZPoint reco::CaloCluster::position_
protected
DetId reco::CaloCluster::seedId_
protected

DetId of seed.

Definition at line 221 of file CaloCluster.h.

Referenced by seed(), and setSeed().