CMS 3D CMS Logo

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

Abstract base class for a PFBlock element (track, cluster...) More...

#include <PFBlockElement.h>

Inheritance diagram for reco::PFBlockElement:
reco::PFBlockElementBrem reco::PFBlockElementCluster reco::PFBlockElementGsfTrack reco::PFBlockElementSuperCluster reco::PFBlockElementTrack

Public Types

enum  TrackType {
  DEFAULT = 0, T_FROM_DISP, T_TO_DISP, T_FROM_GAMMACONV,
  MUON, T_FROM_V0
}
 
enum  Type {
  NONE = 0, TRACK = 1, PS1 = 2, PS2 = 3,
  ECAL = 4, HCAL = 5, GSF = 6, BREM = 7,
  HFEM = 8, HFHAD = 9, SC = 10, HO = 11,
  HGCAL = 12, kNBETypes = 13
}
 

Public Member Functions

virtual PFBlockElementclone () const =0
 necessary to have the edm::OwnVector<PFBlockElement> working More...
 
virtual const PFClusterRefclusterRef () const
 
virtual const ConversionRefVectorconvRefs () const
 
virtual const
PFDisplacedTrackerVertexRef
displacedVertexRef (TrackType trType) const
 
virtual void Dump (std::ostream &out=std::cout, const char *tab=" ") const
 print the object inside the element More...
 
const PFMultilinksTypegetMultilinks (Type type) const
 
unsigned index () const
 
virtual bool isLinkedToDisplacedVertex () const
 
bool isMultilinksValide (Type type) const
 
virtual bool isPrimary () const
 
virtual bool isSecondary () const
 
bool isTimeValid () const
 do we have a valid time information More...
 
void lock ()
 lock element More...
 
bool locked () const
 locked ? More...
 
virtual const MuonRefmuonRef () const
 
 PFBlockElement (Type type=NONE)
 standard constructor More...
 
virtual void setConversionRef (const ConversionRef &convRef, TrackType trType)
 
virtual void setDisplacedVertexRef (const PFDisplacedTrackerVertexRef &niref, TrackType trType)
 
void setIndex (unsigned index)
 set index More...
 
void setIsValidMultilinks (bool isVal, Type type)
 
void setMultilinks (const PFMultiLinksTC &ml, Type type)
 
virtual void setMuonRef (const MuonRef &muref)
 
void setTime (float time, float timeError=0.f)
 the timing information More...
 
virtual void setTrackType (TrackType trType, bool value)
 the trackType More...
 
virtual void setV0Ref (const VertexCompositeCandidateRef &v0ref, TrackType trType)
 
float time () const
 
float timeError () const
 
virtual const reco::TrackReftrackRef () const
 
virtual const PFRecTrackReftrackRefPF () const
 
virtual bool trackType (TrackType trType) const
 
Type type () const
 
void unLock ()
 unlock element More...
 
virtual const
VertexCompositeCandidateRef
V0Ref () const
 
virtual ~PFBlockElement ()
 destructor More...
 

Protected Attributes

unsigned index_
 index in block vector More...
 
bool locked_
 
std::map
< reco::PFBlockElement::Type,
PFMultiLinksTC
multilinks_
 
float time_
 timing information (valid if timeError_ >= 0) More...
 
float timeError_
 timing information uncertainty (<0 if timing not available) More...
 
Type type_
 

Static Protected Attributes

static const ConversionRefVector nullConv_ = reco::ConversionRefVector()
 
static const MuonRef nullMuon_ = reco::MuonRef()
 
static const PFClusterRef nullPFCluster_ = reco::PFClusterRef()
 
static const
PFDisplacedTrackerVertexRef 
nullPFDispVertex_ = reco::PFDisplacedTrackerVertexRef()
 
static const PFRecTrackRef nullPFRecTrack_ = reco::PFRecTrackRef()
 
static const reco::TrackRef nullTrack_ = reco::TrackRef()
 
static const
VertexCompositeCandidateRef 
nullVertex_ = reco::VertexCompositeCandidateRef()
 

Detailed Description

Abstract base class for a PFBlock element (track, cluster...)

this class contains a PFRecTrackRef of a PFClusterRef, depending on the type of the element

Definition at line 26 of file PFBlockElement.h.

Member Enumeration Documentation

possible types for the element do not modify this enum if you don't know what you're doing!!!

Enumerator
NONE 
TRACK 
PS1 
PS2 
ECAL 
HCAL 
GSF 
BREM 
HFEM 
HFHAD 
SC 
HO 
HGCAL 
kNBETypes 

Definition at line 30 of file PFBlockElement.h.

Constructor & Destructor Documentation

reco::PFBlockElement::PFBlockElement ( Type  type = NONE)
inline

standard constructor

Definition at line 50 of file PFBlockElement.h.

51  : type_(type), locked_(false), index_(static_cast<unsigned>(-1)), time_(0.f), timeError_(-1.f) {}
float timeError_
timing information uncertainty (&lt;0 if timing not available)
float time_
timing information (valid if timeError_ &gt;= 0)
unsigned index_
index in block vector
virtual reco::PFBlockElement::~PFBlockElement ( )
inlinevirtual

destructor

Definition at line 54 of file PFBlockElement.h.

54 {}

Member Function Documentation

virtual PFBlockElement* reco::PFBlockElement::clone ( ) const
pure virtual
virtual const PFClusterRef& reco::PFBlockElement::clusterRef ( ) const
inlinevirtual
virtual const ConversionRefVector& reco::PFBlockElement::convRefs ( ) const
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 92 of file PFBlockElement.h.

References nullConv_.

Referenced by TrackAndTrackLinker::testLink().

92 { return nullConv_; }
static const ConversionRefVector nullConv_
virtual const PFDisplacedTrackerVertexRef& reco::PFBlockElement::displacedVertexRef ( TrackType  trType) const
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 91 of file PFBlockElement.h.

References nullPFDispVertex_.

Referenced by TrackAndTrackLinker::testLink().

91 { return nullPFDispVertex_; }
static const PFDisplacedTrackerVertexRef nullPFDispVertex_
void PFBlockElement::Dump ( std::ostream &  out = std::cout,
const char *  tab = " " 
) const
virtual

print the object inside the element

Reimplemented in reco::PFBlockElementSuperCluster, reco::PFBlockElementCluster, reco::PFBlockElementGsfTrack, reco::PFBlockElementBrem, and reco::PFBlockElementTrack.

Definition at line 24 of file PFBlockElement.cc.

24  {
25  if (!out)
26  return;
27  out << pad << "base element";
28 }
const PFMultilinksType& reco::PFBlockElement::getMultilinks ( Type  type) const
inline

Definition at line 124 of file PFBlockElement.h.

References multilinks_.

Referenced by PreshowerAndECALLinker::linkPrefilter(), TrackAndECALLinker::linkPrefilter(), TrackAndHCALLinker::linkPrefilter(), TrackAndECALLinker::testLink(), and TrackAndHCALLinker::testLink().

124 { return multilinks_.at(type).linkedPFObjects; }
std::map< reco::PFBlockElement::Type, PFMultiLinksTC > multilinks_
unsigned reco::PFBlockElement::index ( ) const
inline
virtual bool reco::PFBlockElement::isLinkedToDisplacedVertex ( ) const
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 111 of file PFBlockElement.h.

Referenced by TrackAndTrackLinker::linkPrefilter().

111 { return false; }
bool reco::PFBlockElement::isMultilinksValide ( Type  type) const
inline

Definition at line 117 of file PFBlockElement.h.

References multilinks_.

Referenced by PreshowerAndECALLinker::linkPrefilter(), TrackAndECALLinker::linkPrefilter(), TrackAndHCALLinker::linkPrefilter(), TrackAndECALLinker::testLink(), and TrackAndHCALLinker::testLink().

117  {
118  const auto& it = multilinks_.find(type);
119  if (it != multilinks_.end())
120  return it->second.isValid;
121  else
122  return false; // no multilinks_ for the specified type
123  }
std::map< reco::PFBlockElement::Type, PFMultiLinksTC > multilinks_
virtual bool reco::PFBlockElement::isPrimary ( ) const
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 110 of file PFBlockElement.h.

110 { return false; }
virtual bool reco::PFBlockElement::isSecondary ( ) const
inlinevirtual

Reimplemented in reco::PFBlockElementTrack, and reco::PFBlockElementGsfTrack.

Definition at line 109 of file PFBlockElement.h.

109 { return false; }
bool reco::PFBlockElement::isTimeValid ( ) const
inline

do we have a valid time information

Definition at line 128 of file PFBlockElement.h.

References timeError_.

Referenced by PFAlgo::reconstructTrack().

128 { return timeError_ >= 0.f; }
float timeError_
timing information uncertainty (&lt;0 if timing not available)
void reco::PFBlockElement::lock ( )
inline

lock element

Definition at line 63 of file PFBlockElement.h.

References locked_.

Referenced by reco::PFBlock::addElement().

63 { locked_ = true; }
bool reco::PFBlockElement::locked ( ) const
inline

locked ?

Definition at line 80 of file PFBlockElement.h.

References locked_.

80 { return locked_; }
virtual const MuonRef& reco::PFBlockElement::muonRef ( ) const
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 93 of file PFBlockElement.h.

References nullMuon_.

Referenced by reco::mlpf::getElementProperties(), and reco::mlpf::setCandidateRefs().

93 { return nullMuon_; }
static const MuonRef nullMuon_
virtual void reco::PFBlockElement::setConversionRef ( const ConversionRef convRef,
TrackType  trType 
)
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 99 of file PFBlockElement.h.

References gather_cfg::cout.

99  {
100  std::cout << "Error in PFBlockElement::setConversionRef : this base class method is not implemented" << std::endl;
101  }
tuple cout
Definition: gather_cfg.py:144
virtual void reco::PFBlockElement::setDisplacedVertexRef ( const PFDisplacedTrackerVertexRef niref,
TrackType  trType 
)
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 95 of file PFBlockElement.h.

References gather_cfg::cout.

95  {
96  std::cout << "Error in PFBlockElement::setDisplacedVertexRef : this base class method is not implemented"
97  << std::endl;
98  }
tuple cout
Definition: gather_cfg.py:144
void reco::PFBlockElement::setIndex ( unsigned  index)
inline

set index

Definition at line 83 of file PFBlockElement.h.

References index(), and index_.

Referenced by reco::PFBlock::addElement().

83 { index_ = index; }
unsigned index() const
unsigned index_
index in block vector
void reco::PFBlockElement::setIsValidMultilinks ( bool  isVal,
Type  type 
)
inline

Definition at line 115 of file PFBlockElement.h.

References multilinks_, and type().

115 { multilinks_[type].isValid = isVal; }
Type type() const
std::map< reco::PFBlockElement::Type, PFMultiLinksTC > multilinks_
void reco::PFBlockElement::setMultilinks ( const PFMultiLinksTC ml,
Type  type 
)
inline

Definition at line 114 of file PFBlockElement.h.

References edm_modernize_messagelogger::ml, multilinks_, and type().

114 { multilinks_[type] = ml; }
Type type() const
std::map< reco::PFBlockElement::Type, PFMultiLinksTC > multilinks_
virtual void reco::PFBlockElement::setMuonRef ( const MuonRef muref)
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 102 of file PFBlockElement.h.

References gather_cfg::cout.

102  {
103  std::cout << "Error in PFBlockElement::setMuonRef : this base class method is not implemented" << std::endl;
104  }
tuple cout
Definition: gather_cfg.py:144
void reco::PFBlockElement::setTime ( float  time,
float  timeError = 0.f 
)
inline

the timing information

Definition at line 134 of file PFBlockElement.h.

References time(), time_, timeError(), and timeError_.

134  {
135  time_ = time;
137  }
float time() const
float timeError_
timing information uncertainty (&lt;0 if timing not available)
float time_
timing information (valid if timeError_ &gt;= 0)
float timeError() const
virtual void reco::PFBlockElement::setTrackType ( TrackType  trType,
bool  value 
)
inlinevirtual

the trackType

Reimplemented in reco::PFBlockElementGsfTrack, and reco::PFBlockElementTrack.

Definition at line 75 of file PFBlockElement.h.

References gather_cfg::cout.

75  {
76  std::cout << "Error in PFBlockElement::setTrackType : this base class method is not implemented" << std::endl;
77  }
tuple cout
Definition: gather_cfg.py:144
virtual void reco::PFBlockElement::setV0Ref ( const VertexCompositeCandidateRef v0ref,
TrackType  trType 
)
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 105 of file PFBlockElement.h.

References gather_cfg::cout.

105  {
106  std::cout << "Error in PFBlockElement::setV0Ref : this base class method is not implemented" << std::endl;
107  }
tuple cout
Definition: gather_cfg.py:144
float reco::PFBlockElement::time ( ) const
inline
Returns
the timing

Definition at line 130 of file PFBlockElement.h.

References time_.

Referenced by PFAlgo::reconstructTrack(), and setTime().

130 { return time_; }
float time_
timing information (valid if timeError_ &gt;= 0)
float reco::PFBlockElement::timeError ( ) const
inline
Returns
the timing uncertainty

Definition at line 132 of file PFBlockElement.h.

References timeError_.

Referenced by PFAlgo::reconstructTrack(), and setTime().

132 { return timeError_; }
float timeError_
timing information uncertainty (&lt;0 if timing not available)
virtual const reco::TrackRef& reco::PFBlockElement::trackRef ( ) const
inlinevirtual
virtual const PFRecTrackRef& reco::PFBlockElement::trackRefPF ( ) const
inlinevirtual
virtual bool reco::PFBlockElement::trackType ( TrackType  trType) const
inlinevirtual
Returns
tracktype

Reimplemented in reco::PFBlockElementGsfTrack, and reco::PFBlockElementTrack.

Definition at line 72 of file PFBlockElement.h.

Referenced by PFAlgo::isFromSecInt(), FWPFBlockProxyBuilder::setupTrackElement(), and TrackAndTrackLinker::testLink().

72 { return false; }
Type reco::PFBlockElement::type ( ) const
inline
void reco::PFBlockElement::unLock ( )
inline

unlock element

Definition at line 66 of file PFBlockElement.h.

References locked_.

66 { locked_ = false; }
virtual const VertexCompositeCandidateRef& reco::PFBlockElement::V0Ref ( ) const
inlinevirtual

Reimplemented in reco::PFBlockElementTrack.

Definition at line 94 of file PFBlockElement.h.

References nullVertex_.

Referenced by TrackAndTrackLinker::testLink().

94 { return nullVertex_; }
static const VertexCompositeCandidateRef nullVertex_

Member Data Documentation

unsigned reco::PFBlockElement::index_
protected

index in block vector

Definition at line 150 of file PFBlockElement.h.

Referenced by index(), and setIndex().

bool reco::PFBlockElement::locked_
protected

locked flag.

Definition at line 147 of file PFBlockElement.h.

Referenced by lock(), locked(), and unLock().

std::map<reco::PFBlockElement::Type, PFMultiLinksTC> reco::PFBlockElement::multilinks_
protected
const reco::ConversionRefVector reco::PFBlockElement::nullConv_ = reco::ConversionRefVector()
staticprotected

Definition at line 166 of file PFBlockElement.h.

Referenced by convRefs().

const reco::MuonRef reco::PFBlockElement::nullMuon_ = reco::MuonRef()
staticprotected

Definition at line 167 of file PFBlockElement.h.

Referenced by muonRef().

const reco::PFClusterRef reco::PFBlockElement::nullPFCluster_ = reco::PFClusterRef()
staticprotected

Definition at line 164 of file PFBlockElement.h.

Referenced by clusterRef().

const reco::PFDisplacedTrackerVertexRef reco::PFBlockElement::nullPFDispVertex_ = reco::PFDisplacedTrackerVertexRef()
staticprotected
const reco::PFRecTrackRef reco::PFBlockElement::nullPFRecTrack_ = reco::PFRecTrackRef()
staticprotected

Definition at line 163 of file PFBlockElement.h.

Referenced by trackRefPF().

const reco::TrackRef reco::PFBlockElement::nullTrack_ = reco::TrackRef()
staticprotected

Definition at line 162 of file PFBlockElement.h.

Referenced by trackRef().

const reco::VertexCompositeCandidateRef reco::PFBlockElement::nullVertex_ = reco::VertexCompositeCandidateRef()
staticprotected

Definition at line 168 of file PFBlockElement.h.

Referenced by V0Ref().

float reco::PFBlockElement::time_
protected

timing information (valid if timeError_ >= 0)

Definition at line 158 of file PFBlockElement.h.

Referenced by setTime(), and time().

float reco::PFBlockElement::timeError_
protected

timing information uncertainty (<0 if timing not available)

Definition at line 160 of file PFBlockElement.h.

Referenced by isTimeValid(), setTime(), and timeError().

Type reco::PFBlockElement::type_
protected