CMS 3D CMS Logo

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

Cluster Element. More...

#include <PFBlockElementCluster.h>

Inheritance diagram for reco::PFBlockElementCluster:
reco::PFBlockElement

Public Member Functions

PFBlockElementclone () const
 necessary to have the edm::OwnVector<PFBlockElement> working More...
 
const PFClusterRefclusterRef () const
 
void Dump (std::ostream &out=std::cout, const char *tab=" ") const
 print the object inside the element More...
 
 PFBlockElementCluster ()
 
 PFBlockElementCluster (const PFClusterRef &ref, PFBlockElement::Type type)
 constructor. type must be equal to PS1, PS2, ECAL, HCAL. More...
 
void setSuperClusterRef (const SuperClusterRef &ref)
 
const SuperClusterRefsuperClusterRef () const
 
- Public Member Functions inherited from reco::PFBlockElement
virtual const ConversionRefVectorconvRefs () const
 
virtual const
PFDisplacedTrackerVertexRef
displacedVertexRef (TrackType trType) const
 
const PFMultilinksTypegetMultilinks () const
 
unsigned index () const
 
virtual bool isLinkedToDisplacedVertex () const
 
bool isMultilinksValide () const
 
virtual bool isPrimary () const
 
virtual bool isSecondary () const
 
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)
 
void setMultilinks (const PFMultiLinksTC &ml)
 
void setMultilinksList (const PFMultilinksType &links)
 
virtual void setMuonRef (const MuonRef &muref)
 
virtual void setTrackType (TrackType trType, bool value)
 the trackType More...
 
virtual void setV0Ref (const VertexCompositeCandidateRef &v0ref, TrackType trType)
 
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...
 

Private Attributes

PFClusterRef clusterRef_
 reference to the corresponding cluster More...
 
SuperClusterRef superClusterRef_
 

Additional Inherited Members

- Public Types inherited from reco::PFBlockElement
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,
  kNBETypes =12
}
 
- Protected Attributes inherited from reco::PFBlockElement
unsigned index_
 index in block vector More...
 
bool locked_
 
PFMultiLinksTC multilinks_
 
Type type_
 
- Static Protected Attributes inherited from reco::PFBlockElement
static const ConversionRefVector nullConv_ = reco::ConversionRefVector()
 
static const MuonRef nullMuon_ = reco::MuonRef()
 
static const PFClusterRef nullPFCluster_ = reco::PFClusterRef()
 
static const
PFDisplacedTrackerVertexRef 
nullPFDispVertex_
 
static const PFRecTrackRef nullPFRecTrack_ = reco::PFRecTrackRef()
 
static const reco::TrackRef nullTrack_ = reco::TrackRef()
 
static const
VertexCompositeCandidateRef 
nullVertex_ = reco::VertexCompositeCandidateRef()
 

Detailed Description

Cluster Element.

this class contains a reference to a PFCluster

Definition at line 16 of file PFBlockElementCluster.h.

Constructor & Destructor Documentation

reco::PFBlockElementCluster::PFBlockElementCluster ( )
inline

Definition at line 18 of file PFBlockElementCluster.h.

Referenced by clone().

18 {}
reco::PFBlockElementCluster::PFBlockElementCluster ( const PFClusterRef ref,
PFBlockElement::Type  type 
)
inline

constructor. type must be equal to PS1, PS2, ECAL, HCAL.

Definition at line 23 of file PFBlockElementCluster.h.

25  :
27  clusterRef_( ref ) {}
type
Definition: HCALResponse.h:21
PFClusterRef clusterRef_
reference to the corresponding cluster
PFBlockElement(Type type=NONE)
standard constructor

Member Function Documentation

PFBlockElement* reco::PFBlockElementCluster::clone ( ) const
inlinevirtual

necessary to have the edm::OwnVector<PFBlockElement> working

Implements reco::PFBlockElement.

Definition at line 29 of file PFBlockElementCluster.h.

References PFBlockElementCluster().

29 { return new PFBlockElementCluster(*this); }
const PFClusterRef& reco::PFBlockElementCluster::clusterRef ( ) const
inlinevirtual
void PFBlockElementCluster::Dump ( std::ostream &  out = std::cout,
const char *  tab = " " 
) const
virtual

print the object inside the element

Reimplemented from reco::PFBlockElement.

Definition at line 11 of file PFBlockElementCluster.cc.

References ET, and mathSSE::sqrt().

Referenced by PFEGammaAlgo::unwrapSuperCluster().

12  {
13 
14  if(! out ) return;
15  // need to convert the math::XYZPoint data member of the PFCluster class=
16  // to a displacement vector:
17  ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D<double> , ROOT::Math::DefaultCoordinateSystemTag >
18  clusterPos( clusterRef_->position().X(), clusterRef_->position().Y(),clusterRef_->position().Z() );
19 
20  clusterPos = clusterPos.Unit();
21  double E = clusterRef_->energy();
22  clusterPos *= E;
23  double ET = sqrt (clusterPos.X()*clusterPos.X() + clusterPos.Y()*clusterPos.Y());
24 
25  out << setprecision(3);
26  out << tab<<setw(7)<<"layer="<<setw(3)<<clusterRef_->layer();
27  out << setiosflags(ios::right);
28  out << setiosflags(ios::fixed);
29  out << setw(4) <<", ET =" << setw(7) << ET;
30  out << setw(4) <<", E =" << setw(7) << E;
31  out << " (eta,phi,z)= (";
32  out << clusterRef_->position().Eta()<<",";
33  out << clusterRef_->position().Phi()<<",";
34  out << clusterRef_->position().Z() <<")";
35  out << resetiosflags(ios::right|ios::fixed);
36 }
PFClusterRef clusterRef_
reference to the corresponding cluster
T sqrt(T t)
Definition: SSEVec.h:48
tuple out
Definition: dbtoconf.py:99
#define ET
void reco::PFBlockElementCluster::setSuperClusterRef ( const SuperClusterRef ref)
inline

Definition at line 35 of file PFBlockElementCluster.h.

References superClusterRef_.

Referenced by ECALClusterImporter::importToBlock().

36  { superClusterRef_ = ref;}
const SuperClusterRef& reco::PFBlockElementCluster::superClusterRef ( ) const
inline

Member Data Documentation

PFClusterRef reco::PFBlockElementCluster::clusterRef_
private

reference to the corresponding cluster

Definition at line 43 of file PFBlockElementCluster.h.

Referenced by clusterRef().

SuperClusterRef reco::PFBlockElementCluster::superClusterRef_
private

Definition at line 44 of file PFBlockElementCluster.h.

Referenced by setSuperClusterRef(), and superClusterRef().