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
FWRPCDigiProxyBuilder Class Reference
Inheritance diagram for FWRPCDigiProxyBuilder:
FWProxyBuilderBase

Public Member Functions

 FWRPCDigiProxyBuilder ()
 
 REGISTER_PROXYBUILDER_METHODS ()
 
virtual ~FWRPCDigiProxyBuilder ()
 
- 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
 
virtual bool haveSingleProduct () 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 build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *) override
 
 FWRPCDigiProxyBuilder (const FWRPCDigiProxyBuilder &)
 
const FWRPCDigiProxyBuilderoperator= (const FWRPCDigiProxyBuilder &)
 

Additional Inherited Members

- 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 FWProxyBuilderBase
virtual void buildViewType (const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *)
 
virtual void clean ()
 
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)
 
virtual bool visibilityModelChanges (const FWModelId &, TEveElement *, FWViewType::EType, const FWViewContext *)
 
- Protected Attributes inherited from FWProxyBuilderBase
std::vector< Product * > m_products
 

Detailed Description

Definition at line 24 of file FWRPCDigiProxyBuilder.cc.

Constructor & Destructor Documentation

FWRPCDigiProxyBuilder::FWRPCDigiProxyBuilder ( )
inline

Definition at line 27 of file FWRPCDigiProxyBuilder.cc.

27 {}
virtual FWRPCDigiProxyBuilder::~FWRPCDigiProxyBuilder ( )
inlinevirtual

Definition at line 28 of file FWRPCDigiProxyBuilder.cc.

28 {}
FWRPCDigiProxyBuilder::FWRPCDigiProxyBuilder ( const FWRPCDigiProxyBuilder )
private

Member Function Documentation

void FWRPCDigiProxyBuilder::build ( const FWEventItem iItem,
TEveElementList *  product,
const FWViewContext  
)
overrideprivatevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 39 of file FWRPCDigiProxyBuilder.cc.

References FWGeometry::contains(), FWProxyBuilderBase::createCompound(), fwLog, relativeConstraints::geom, FWEventItem::get(), FWEventItem::getGeom(), FWGeometry::getParameters(), fwlog::kWarning, FWGeometry::localToGlobal(), evf::evtn::offset(), Parameters::parameters, and FWProxyBuilderBase::setupAddElement().

40 {
41  const RPCDigiCollection* digis = 0;
42 
43  iItem->get(digis);
44 
45  if ( ! digis )
46  {
47  fwLog(fwlog::kWarning)<<"Failed to get RPCDigis"<<std::endl;
48  return;
49  }
50  const FWGeometry *geom = iItem->getGeom();
51 
52  for ( RPCDigiCollection::DigiRangeIterator dri = digis->begin(), driEnd = digis->end();
53  dri != driEnd; ++dri )
54  {
55  unsigned int rawid = (*dri).first.rawId();
56  const RPCDigiCollection::Range& range = (*dri).second;
57 
58  if( ! geom->contains( rawid ))
59  {
60  fwLog( fwlog::kWarning ) << "Failed to get geometry of RPC roll with detid: "
61  << rawid << std::endl;
62 
63  TEveCompound* compound = createCompound();
64  setupAddElement( compound, product );
65 
66  continue;
67  }
68 
69  const float* parameters = geom->getParameters( rawid );
70  float nStrips = parameters[0];
71  float halfStripLength = parameters[1]*0.5;
72  float pitch = parameters[2];
73  float offset = -0.5*nStrips*pitch;
74 
75  for( RPCDigiCollection::const_iterator dit = range.first;
76  dit != range.second; ++dit )
77  {
78  TEveStraightLineSet* stripDigiSet = new TEveStraightLineSet;
79  stripDigiSet->SetLineWidth(3);
80  setupAddElement( stripDigiSet, product );
81 
82  int strip = (*dit).strip();
83  float centreOfStrip = (strip-0.5)*pitch + offset;
84 
85  float localPointTop[3] =
86  {
87  centreOfStrip, halfStripLength, 0.0
88  };
89 
90  float localPointBottom[3] =
91  {
92  centreOfStrip, -halfStripLength, 0.0
93  };
94 
95  float globalPointTop[3];
96  float globalPointBottom[3];
97 
98  geom->localToGlobal( rawid, localPointTop, globalPointTop, localPointBottom, globalPointBottom );
99 
100  stripDigiSet->AddLine(globalPointTop[0], globalPointTop[1], globalPointTop[2],
101  globalPointBottom[0], globalPointBottom[1], globalPointBottom[2]);
102  }
103  }
104 }
dictionary parameters
Definition: Parameters.py:2
const float * getParameters(unsigned int id) const
Definition: FWGeometry.cc:293
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
void get(const T *&oData) const
Definition: FWEventItem.h:84
void localToGlobal(unsigned int id, const float *local, float *global, bool translatep=true) const
Definition: FWGeometry.cc:325
bool contains(unsigned int id) const
Definition: FWGeometry.h:98
unsigned int offset(bool)
#define fwLog(_level_)
Definition: fwLog.h:50
std::vector< RPCDigi >::const_iterator const_iterator
TEveCompound * createCompound(bool set_color=true, bool propagate_color_to_all_children=false) const
std::pair< const_iterator, const_iterator > Range
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:681
const FWRPCDigiProxyBuilder& FWRPCDigiProxyBuilder::operator= ( const FWRPCDigiProxyBuilder )
private
FWRPCDigiProxyBuilder::REGISTER_PROXYBUILDER_METHODS ( )