CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions
FWGEMPadDigiProxyBuilder Class Reference
Inheritance diagram for FWGEMPadDigiProxyBuilder:
FWProxyBuilderBase

Public Member Functions

 FWGEMPadDigiProxyBuilder ()
 
const std::string & purpose () const
 
const std::string & typeName () const
 
const std::string & view () const
 
virtual ~FWGEMPadDigiProxyBuilder ()
 
- 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 ()
 

Static Public Member Functions

static const std::string & classPurpose ()
 
static const std::string & classRegisterTypeName ()
 
static const std::string & classTypeName ()
 
static const std::string & classView ()
 
- 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...
 

Private Member Functions

virtual void build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *)
 
 FWGEMPadDigiProxyBuilder (const FWGEMPadDigiProxyBuilder &)
 
const FWGEMPadDigiProxyBuilderoperator= (const FWGEMPadDigiProxyBuilder &)
 

Additional Inherited Members

- 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 117 of file FWGEMDigiProxyBuilder.cc.

Constructor & Destructor Documentation

FWGEMPadDigiProxyBuilder::FWGEMPadDigiProxyBuilder ( )
inline

Definition at line 120 of file FWGEMDigiProxyBuilder.cc.

120 {}
virtual FWGEMPadDigiProxyBuilder::~FWGEMPadDigiProxyBuilder ( )
inlinevirtual

Definition at line 121 of file FWGEMDigiProxyBuilder.cc.

121 {}
FWGEMPadDigiProxyBuilder::FWGEMPadDigiProxyBuilder ( const FWGEMPadDigiProxyBuilder )
private

Member Function Documentation

void FWGEMPadDigiProxyBuilder::build ( const FWEventItem iItem,
TEveElementList *  product,
const FWViewContext  
)
privatevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 132 of file FWGEMDigiProxyBuilder.cc.

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

133 {
134  const GEMPadDigiCollection* digis = 0;
135 
136  iItem->get(digis);
137 
138  if ( ! digis )
139  {
140  fwLog(fwlog::kWarning)<<"Failed to get GEMPadDigis"<<std::endl;
141  return;
142  }
143  const FWGeometry *geom = iItem->getGeom();
144 
145  for ( GEMPadDigiCollection::DigiRangeIterator dri = digis->begin(), driEnd = digis->end();
146  dri != driEnd; ++dri )
147  {
148  unsigned int rawid = (*dri).first.rawId();
149  const GEMPadDigiCollection::Range& range = (*dri).second;
150 
151  if( ! geom->contains( rawid ))
152  {
153  fwLog( fwlog::kWarning ) << "Failed to get geometry of GEM roll with detid: "
154  << rawid << std::endl;
155 
156  TEveCompound* compound = createCompound();
157  setupAddElement( compound, product );
158 
159  continue;
160  }
161 
162  const float* parameters = geom->getParameters( rawid );
163  float nStrips = parameters[0];
164  float halfStripLength = parameters[1]*0.5;
165  float nPads = parameters[5];
166  float topPitch = parameters[3]*nStrips/nPads;
167  float bottomPitch = parameters[4]*nStrips/nPads;
168 
169  for( GEMPadDigiCollection::const_iterator dit = range.first;
170  dit != range.second; ++dit )
171  {
172  TEveStraightLineSet* stripDigiSet = new TEveStraightLineSet;
173  stripDigiSet->SetLineWidth(3*nStrips/nPads);
174  setupAddElement( stripDigiSet, product );
175 
176  int pad = (*dit).pad();
177  float topOfStrip = (pad-0.5)*topPitch - 0.5*topPitch*nPads;
178  float bottomOfStrip = (pad-0.5)*bottomPitch - 0.5*bottomPitch*nPads;
179 
180  float localPointTop[3] =
181  {
182  topOfStrip, halfStripLength, 0.0
183  };
184 
185  float localPointBottom[3] =
186  {
187  bottomOfStrip, -halfStripLength, 0.0
188  };
189 
190  float globalPointTop[3];
191  float globalPointBottom[3];
192 
193  geom->localToGlobal( rawid, localPointTop, globalPointTop, localPointBottom, globalPointBottom );
194 
195  stripDigiSet->AddLine(globalPointTop[0], globalPointTop[1], globalPointTop[2],
196  globalPointBottom[0], globalPointBottom[1], globalPointBottom[2]);
197  }
198  }
199 }
const float * getParameters(unsigned int id) const
Definition: FWGeometry.cc:296
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
void get(const T *&oData) const
Definition: FWEventItem.h:85
void localToGlobal(unsigned int id, const float *local, float *global, bool translatep=true) const
Definition: FWGeometry.cc:328
bool contains(unsigned int id) const
Definition: FWGeometry.h:109
#define fwLog(_level_)
Definition: fwLog.h:50
std::vector< GEMPadDigi >::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:683
const std::string & FWGEMPadDigiProxyBuilder::classPurpose ( )
static

Definition at line 202 of file FWGEMDigiProxyBuilder.cc.

const std::string & FWGEMPadDigiProxyBuilder::classRegisterTypeName ( )
static

Definition at line 202 of file FWGEMDigiProxyBuilder.cc.

const std::string & FWGEMPadDigiProxyBuilder::classTypeName ( )
static

Definition at line 202 of file FWGEMDigiProxyBuilder.cc.

const std::string & FWGEMPadDigiProxyBuilder::classView ( )
static

Definition at line 202 of file FWGEMDigiProxyBuilder.cc.

const FWGEMPadDigiProxyBuilder& FWGEMPadDigiProxyBuilder::operator= ( const FWGEMPadDigiProxyBuilder )
private
const std::string& FWGEMPadDigiProxyBuilder::purpose ( ) const
inline

Definition at line 123 of file FWGEMDigiProxyBuilder.cc.

125 :
126  virtual void build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*);
const std::string& FWGEMPadDigiProxyBuilder::typeName ( ) const
inline

Definition at line 123 of file FWGEMDigiProxyBuilder.cc.

125 :
126  virtual void build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*);
const std::string& FWGEMPadDigiProxyBuilder::view ( ) const
inline

Definition at line 123 of file FWGEMDigiProxyBuilder.cc.

125 :
126  virtual void build(const FWEventItem* iItem, TEveElementList* product, const FWViewContext*);