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 Member Functions
FWPhotonProxyBuilder Class Reference
Inheritance diagram for FWPhotonProxyBuilder:
FWSimpleProxyBuilderTemplate< reco::Photon > FWSimpleProxyBuilder FWProxyBuilderBase

Public Member Functions

 FWPhotonProxyBuilder (void)
 
virtual bool haveSingleProduct (void) const override
 
 REGISTER_PROXYBUILDER_METHODS ()
 
virtual ~FWPhotonProxyBuilder (void)
 
- Public Member Functions inherited from FWSimpleProxyBuilderTemplate< reco::Photon >
 FWSimpleProxyBuilderTemplate ()
 
- Public Member Functions inherited from FWSimpleProxyBuilder
 FWSimpleProxyBuilder (const std::type_info &iType)
 
virtual ~FWSimpleProxyBuilder ()
 
- Public Member Functions inherited from FWProxyBuilderBase
void build ()
 
virtual bool canHandle (const FWEventItem &)
 
const fireworks::Contextcontext () const
 
TEveElementList * createProduct (FWViewType::EType, const FWViewContext *)
 
 FWProxyBuilderBase ()
 
bool getHaveWindow () const
 
virtual bool havePerViewProduct (FWViewType::EType) const
 
const FWEventItemitem () const
 
virtual void itemBeingDestroyed (const FWEventItem *)
 
void itemChanged (const FWEventItem *)
 
int layer () const
 
void modelChanges (const FWModelIds &)
 
void removePerViewProduct (FWViewType::EType, const FWViewContext *vc)
 
void scaleChanged (const FWViewContext *)
 
void setHaveWindow (bool iFlag)
 
virtual void setInteractionList (FWInteractionList *, const std::string &)
 
virtual void setItem (const FWEventItem *iItem)
 
void setupAddElement (TEveElement *el, TEveElement *parent, bool set_color=true) const
 
void setupElement (TEveElement *el, bool color=true) const
 
virtual bool willHandleInteraction () const
 
virtual ~FWProxyBuilderBase ()
 

Private Member Functions

virtual void buildViewType (const reco::Photon &photon, unsigned int iIndex, TEveElement &oItemHolder, FWViewType::EType type, const FWViewContext *) override
 
 FWPhotonProxyBuilder (const FWPhotonProxyBuilder &)
 
const FWPhotonProxyBuilderoperator= (const FWPhotonProxyBuilder &)
 

Additional Inherited Members

- Static Public Member Functions inherited from FWSimpleProxyBuilder
static std::string typeOfBuilder ()
 Used by the plugin system to determine how the proxy uses the data from FWEventItem. More...
 
- Static Public Member Functions inherited from FWProxyBuilderBase
static bool representsSubPart ()
 
static std::string typeOfBuilder ()
 Used by the plugin system to determine how the proxy uses the data from FWEventItem. More...
 
- Protected Types inherited from FWProxyBuilderBase
typedef std::vector< Product * >
::iterator 
Product_it
 
- Protected Member Functions inherited from FWSimpleProxyBuilderTemplate< reco::Photon >
const reco::PhotonmodelData (int index)
 
- Protected Member Functions inherited from FWSimpleProxyBuilder
virtual void build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *)
 
virtual void buildViewType (const FWEventItem *iItem, TEveElementList *product, FWViewType::EType viewType, const FWViewContext *)
 
virtual void clean ()
 
- Protected Member Functions inherited from FWProxyBuilderBase
virtual void cleanLocal ()
 
TEveCompound * createCompound (bool set_color=true, bool propagate_color_to_all_children=false) const
 
 FWProxyBuilderBase (const FWProxyBuilderBase &)
 
void increaseComponentTransparency (unsigned int index, TEveElement *holder, const std::string &name, Char_t transpOffset)
 
virtual void localModelChanges (const FWModelId &iId, TEveElement *iCompound, FWViewType::EType viewType, const FWViewContext *vc)
 
virtual void modelChanges (const FWModelIds &, Product *)
 
const FWProxyBuilderBaseoperator= (const FWProxyBuilderBase &)
 
virtual void scaleProduct (TEveElementList *parent, FWViewType::EType, const FWViewContext *vc)
 
- Protected Attributes inherited from FWSimpleProxyBuilder
FWSimpleProxyHelper m_helper
 
- Protected Attributes inherited from FWProxyBuilderBase
std::vector< Product * > m_products
 

Detailed Description

Definition at line 25 of file FWPhotonProxyBuilder.cc.

Constructor & Destructor Documentation

FWPhotonProxyBuilder::FWPhotonProxyBuilder ( void  )
inline

Definition at line 28 of file FWPhotonProxyBuilder.cc.

28 {}
virtual FWPhotonProxyBuilder::~FWPhotonProxyBuilder ( void  )
inlinevirtual

Definition at line 30 of file FWPhotonProxyBuilder.cc.

30 {}
FWPhotonProxyBuilder::FWPhotonProxyBuilder ( const FWPhotonProxyBuilder )
private

Member Function Documentation

void FWPhotonProxyBuilder::buildViewType ( const reco::Photon photon,
unsigned int  iIndex,
TEveElement &  oItemHolder,
FWViewType::EType  type,
const FWViewContext  
)
overrideprivatevirtual

Reimplemented from FWSimpleProxyBuilderTemplate< reco::Photon >.

Definition at line 44 of file FWPhotonProxyBuilder.cc.

References fwLog, relativeConstraints::geom, FWGeometry::getCorners(), FWEventItem::getGeom(), FWProxyBuilderBase::item(), FWViewType::kISpy, FWViewType::kRhoPhi, FWViewType::kRhoPhiPF, FWViewType::kRhoZ, fwlog::kWarning, fireworks::makeRhoPhiSuperCluster(), fireworks::makeRhoZSuperCluster(), reco::LeafCandidate::phi(), FWProxyBuilderBase::setupAddElement(), and reco::Photon::superCluster().

45 {
46  const FWGeometry *geom = item()->getGeom();
47 
49  {
51  photon.superCluster(),
52  photon.phi(),
53  oItemHolder );
54  }
55 
56  else if( type == FWViewType::kRhoZ )
58  photon.superCluster(),
59  photon.phi(),
60  oItemHolder );
61 
62  else if( type == FWViewType::kISpy )
63  {
64  std::vector<std::pair<DetId, float> > detIds = photon.superCluster()->hitsAndFractions();
65 
66  TEveBoxSet* boxset = new TEveBoxSet();
67  boxset->Reset(TEveBoxSet::kBT_FreeBox, true, 64);
68  boxset->UseSingleColor();
69  boxset->SetPickable(1);
70 
71  for( std::vector<std::pair<DetId, float> >::iterator id = detIds.begin(), ide = detIds.end();
72  id != ide; ++id )
73  {
74  const float* corners = geom->getCorners( id->first.rawId() );
75 
76  if( corners == 0 )
77  {
79  << "No corners available for supercluster constituent" << std::endl;
80  continue;
81  }
82  boxset->AddBox( &corners[0]);
83  }
84 
85  boxset->RefitPlex();
86  setupAddElement(boxset, &oItemHolder);
87  }
88 }
type
Definition: HCALResponse.h:21
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
reco::SuperClusterRef superCluster() const
Ref to SuperCluster.
Definition: Photon.cc:58
const FWEventItem * item() const
virtual float phi() const GCC11_FINAL
momentum azimuthal angle
bool makeRhoZSuperCluster(FWProxyBuilderBase *, const reco::SuperClusterRef &iCluster, float iPhi, TEveElement &oItemHolder)
const float * getCorners(unsigned int id) const
Definition: FWGeometry.cc:277
#define fwLog(_level_)
Definition: fwLog.h:50
bool makeRhoPhiSuperCluster(FWProxyBuilderBase *, const reco::SuperClusterRef &iCluster, float iPhi, TEveElement &oItemHolder)
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:681
virtual bool FWPhotonProxyBuilder::haveSingleProduct ( void  ) const
inlineoverridevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 32 of file FWPhotonProxyBuilder.cc.

32 { return false; }
const FWPhotonProxyBuilder& FWPhotonProxyBuilder::operator= ( const FWPhotonProxyBuilder )
private
FWPhotonProxyBuilder::REGISTER_PROXYBUILDER_METHODS ( )