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

Public Member Functions

 FWGEMDigiProxyBuilder ()
 
 REGISTER_PROXYBUILDER_METHODS ()
 
virtual ~FWGEMDigiProxyBuilder ()
 
- 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 *)
 
 FWGEMDigiProxyBuilder (const FWGEMDigiProxyBuilder &)
 
const FWGEMDigiProxyBuilderoperator= (const FWGEMDigiProxyBuilder &)
 

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

Constructor & Destructor Documentation

FWGEMDigiProxyBuilder::FWGEMDigiProxyBuilder ( )
inline

Definition at line 29 of file FWGEMDigiProxyBuilder.cc.

29 {}
virtual FWGEMDigiProxyBuilder::~FWGEMDigiProxyBuilder ( )
inlinevirtual

Definition at line 30 of file FWGEMDigiProxyBuilder.cc.

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

Member Function Documentation

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

Reimplemented from FWProxyBuilderBase.

Definition at line 41 of file FWGEMDigiProxyBuilder.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().

42 {
43  const GEMDigiCollection* digis = 0;
44 
45  iItem->get(digis);
46 
47  if ( ! digis )
48  {
49  fwLog(fwlog::kWarning)<<"Failed to get GEMDigis"<<std::endl;
50  return;
51  }
52  const FWGeometry *geom = iItem->getGeom();
53 
54  for ( GEMDigiCollection::DigiRangeIterator dri = digis->begin(), driEnd = digis->end();
55  dri != driEnd; ++dri )
56  {
57  unsigned int rawid = (*dri).first.rawId();
58  const GEMDigiCollection::Range& range = (*dri).second;
59 
60  if( ! geom->contains( rawid ))
61  {
62  fwLog( fwlog::kWarning ) << "Failed to get geometry of GEM roll with detid: "
63  << rawid << std::endl;
64 
65  TEveCompound* compound = createCompound();
66  setupAddElement( compound, product );
67 
68  continue;
69  }
70 
71  const float* parameters = geom->getParameters( rawid );
72  float nStrips = parameters[0];
73  float halfStripLength = parameters[1]*0.5;
74  float pitch = parameters[2];
75  float offset = -0.5*nStrips*pitch;
76 
77  for( GEMDigiCollection::const_iterator dit = range.first;
78  dit != range.second; ++dit )
79  {
80  TEveStraightLineSet* stripDigiSet = new TEveStraightLineSet;
81  stripDigiSet->SetLineWidth(3);
82  setupAddElement( stripDigiSet, product );
83 
84  int strip = (*dit).strip();
85  float centreOfStrip = (strip-0.5)*pitch + offset;
86 
87  float localPointTop[3] =
88  {
89  centreOfStrip, halfStripLength, 0.0
90  };
91 
92  float localPointBottom[3] =
93  {
94  centreOfStrip, -halfStripLength, 0.0
95  };
96 
97  float globalPointTop[3];
98  float globalPointBottom[3];
99 
100  geom->localToGlobal( rawid, localPointTop, globalPointTop, localPointBottom, globalPointBottom );
101 
102  stripDigiSet->AddLine(globalPointTop[0], globalPointTop[1], globalPointTop[2],
103  globalPointBottom[0], globalPointBottom[1], globalPointBottom[2]);
104  }
105  }
106 }
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< GEMDigi >::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 FWGEMDigiProxyBuilder& FWGEMDigiProxyBuilder::operator= ( const FWGEMDigiProxyBuilder )
private
FWGEMDigiProxyBuilder::REGISTER_PROXYBUILDER_METHODS ( )