CMS 3D CMS Logo

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

Public Member Functions

 FWGEMDigiProxyBuilder ()
 
 FWGEMDigiProxyBuilder (const FWGEMDigiProxyBuilder &)=delete
 
const FWGEMDigiProxyBuilderoperator= (const FWGEMDigiProxyBuilder &)=delete
 
const std::string & purpose () const
 
const std::string & typeName () const
 
const std::string & view () const
 
 ~FWGEMDigiProxyBuilder () override
 
- 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

void build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *) override
 

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

Constructor & Destructor Documentation

FWGEMDigiProxyBuilder::FWGEMDigiProxyBuilder ( )
inline

Definition at line 31 of file FWGEMDigiProxyBuilder.cc.

31 {}
FWGEMDigiProxyBuilder::~FWGEMDigiProxyBuilder ( )
inlineoverride

Definition at line 32 of file FWGEMDigiProxyBuilder.cc.

32 {}
FWGEMDigiProxyBuilder::FWGEMDigiProxyBuilder ( const FWGEMDigiProxyBuilder )
delete

Member Function Documentation

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

Reimplemented from FWProxyBuilderBase.

Definition at line 45 of file FWGEMDigiProxyBuilder.cc.

References FWGeometry::contains(), FWProxyBuilderBase::createCompound(), fwLog, relativeConstraints::geom, FWEventItem::get(), FWEventItem::getGeom(), FWGeometry::getParameters(), fwlog::kWarning, FWGeometry::localToGlobal(), me0TriggerPseudoDigis_cff::nStrips, sistrip::SpyUtilities::range(), FWProxyBuilderBase::setupAddElement(), and digitizers_cfi::strip.

45  {
46  const GEMDigiCollection* digis = nullptr;
47 
48  iItem->get(digis);
49 
50  if (!digis) {
51  fwLog(fwlog::kWarning) << "Failed to get GEMDigis" << std::endl;
52  return;
53  }
54  const FWGeometry* geom = iItem->getGeom();
55 
56  for (GEMDigiCollection::DigiRangeIterator dri = digis->begin(), driEnd = digis->end(); dri != driEnd; ++dri) {
57  unsigned int rawid = (*dri).first.rawId();
58  const GEMDigiCollection::Range& range = (*dri).second;
59 
60  if (!geom->contains(rawid)) {
61  fwLog(fwlog::kWarning) << "Failed to get geometry of GEM roll with detid: " << 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 topPitch = parameters[3];
73  float bottomPitch = parameters[4];
74 
75  for (GEMDigiCollection::const_iterator dit = range.first; dit != range.second; ++dit) {
76  TEveStraightLineSet* stripDigiSet = new TEveStraightLineSet;
77  stripDigiSet->SetLineWidth(3);
78  setupAddElement(stripDigiSet, product);
79 
80  int strip = (*dit).strip();
81  float topOfStrip = (strip - 0.5) * topPitch - 0.5 * nStrips * topPitch;
82  float bottomOfStrip = (strip - 0.5) * bottomPitch - 0.5 * nStrips * bottomPitch;
83 
84  float localPointTop[3] = {topOfStrip, halfStripLength, 0.0};
85 
86  float localPointBottom[3] = {bottomOfStrip, -halfStripLength, 0.0};
87 
88  float globalPointTop[3];
89  float globalPointBottom[3];
90 
91  geom->localToGlobal(rawid, localPointTop, globalPointTop, localPointBottom, globalPointBottom);
92 
93  stripDigiSet->AddLine(globalPointTop[0],
94  globalPointTop[1],
95  globalPointTop[2],
96  globalPointBottom[0],
97  globalPointBottom[1],
98  globalPointBottom[2]);
99  }
100  }
101 }
const float * getParameters(unsigned int id) const
Definition: FWGeometry.cc:472
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
void get(const T *&oData) const
Definition: FWEventItem.h:78
tuple nStrips
1.2 is to make the matching window safely the two nearest strips 0.35 is the size of an ME0 chamber i...
const uint16_t range(const Frame &aFrame)
void localToGlobal(unsigned int id, const float *local, float *global, bool translatep=true) const
Definition: FWGeometry.cc:494
bool contains(unsigned int id) const
Definition: FWGeometry.h:139
#define fwLog(_level_)
Definition: fwLog.h:45
std::pair< const_iterator, const_iterator > Range
std::vector< DigiType >::const_iterator const_iterator
TEveCompound * createCompound(bool set_color=true, bool propagate_color_to_all_children=false) const
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:548
const std::string & FWGEMDigiProxyBuilder::classPurpose ( )
static

Definition at line 106 of file FWGEMDigiProxyBuilder.cc.

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

Definition at line 106 of file FWGEMDigiProxyBuilder.cc.

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

Definition at line 106 of file FWGEMDigiProxyBuilder.cc.

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

Definition at line 106 of file FWGEMDigiProxyBuilder.cc.

const FWGEMDigiProxyBuilder& FWGEMDigiProxyBuilder::operator= ( const FWGEMDigiProxyBuilder )
delete
const std::string& FWGEMDigiProxyBuilder::purpose ( ) const
inline

Definition at line 34 of file FWGEMDigiProxyBuilder.cc.

const std::string& FWGEMDigiProxyBuilder::typeName ( ) const
inline

Definition at line 34 of file FWGEMDigiProxyBuilder.cc.

const std::string& FWGEMDigiProxyBuilder::view ( ) const
inline

Definition at line 34 of file FWGEMDigiProxyBuilder.cc.