CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes
FWSiStripClusterProxyBuilder Class Reference
Inheritance diagram for FWSiStripClusterProxyBuilder:
FWProxyBuilderBase

Public Member Functions

 FWSiStripClusterProxyBuilder (void)
 
void itemBeingDestroyed (const FWEventItem *) override
 
const std::string & purpose () const
 
const std::string & typeName () const
 
const std::string & view () const
 
 ~FWSiStripClusterProxyBuilder (void) 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
 
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...
 

Protected Member Functions

void build ()
 
virtual void build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *)
 
void build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *) override
 
void localModelChanges (const FWModelId &iId, TEveElement *iCompound, FWViewType::EType viewType, const FWViewContext *vc) override
 
- 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 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 *)
 

Private Member Functions

 FWSiStripClusterProxyBuilder (const FWSiStripClusterProxyBuilder &)=delete
 
const FWSiStripClusterProxyBuilderoperator= (const FWSiStripClusterProxyBuilder &)=delete
 

Private Attributes

TEveElementList * m_shapeList
 

Additional Inherited Members

- Protected Types inherited from FWProxyBuilderBase
typedef std::vector< Product * >::iterator Product_it
 
- Protected Attributes inherited from FWProxyBuilderBase
std::vector< Product * > m_products
 

Detailed Description

Definition at line 17 of file FWSiStripClusterProxyBuilder.cc.

Constructor & Destructor Documentation

◆ FWSiStripClusterProxyBuilder() [1/2]

FWSiStripClusterProxyBuilder::FWSiStripClusterProxyBuilder ( void  )

Definition at line 42 of file FWSiStripClusterProxyBuilder.cc.

42  : m_shapeList(nullptr) {
43  m_shapeList = new TEveElementList("shapePool");
44  m_shapeList->IncDenyDestroy();
45 }

References m_shapeList.

◆ ~FWSiStripClusterProxyBuilder()

FWSiStripClusterProxyBuilder::~FWSiStripClusterProxyBuilder ( void  )
override

Definition at line 47 of file FWSiStripClusterProxyBuilder.cc.

47 { m_shapeList->DecDenyDestroy(); }

References m_shapeList.

◆ FWSiStripClusterProxyBuilder() [2/2]

FWSiStripClusterProxyBuilder::FWSiStripClusterProxyBuilder ( const FWSiStripClusterProxyBuilder )
privatedelete

Member Function Documentation

◆ build() [1/3]

void FWProxyBuilderBase::build
protected

Definition at line 110 of file FWProxyBuilderBase.cc.

110  {
111  if (m_item) {
112  try {
113  size_t itemSize = m_item->size(); //cashed
114 
115  clean();
116  for (Product_it i = m_products.begin(); i != m_products.end(); ++i) {
117  //printf("build() %s \n", m_item->name().c_str());
118  TEveElementList* elms = (*i)->m_elements;
119  size_t oldSize = elms->NumChildren();
120 
121  if (haveSingleProduct()) {
122  build(m_item, elms, (*i)->m_viewContext);
123  } else {
124  buildViewType(m_item, elms, (*i)->m_viewType, (*i)->m_viewContext);
125  }
126 
127  // Project all children of current product.
128  // If product is not registered into any projection-manager,
129  // this does nothing.
130  TEveProjectable* pable = dynamic_cast<TEveProjectable*>(elms);
131  if (pable->HasProjecteds()) {
132  // loop projected holders
133  for (TEveProjectable::ProjList_i i = pable->BeginProjecteds(); i != pable->EndProjecteds(); ++i) {
134  TEveProjectionManager* pmgr = (*i)->GetManager();
135  Float_t oldDepth = pmgr->GetCurrentDepth();
136  pmgr->SetCurrentDepth(item()->layer());
137  size_t cnt = 0;
138 
139  TEveElement* projectedAsElement = (*i)->GetProjectedAsElement();
140  TEveElement::List_i parentIt = projectedAsElement->BeginChildren();
141  for (TEveElement::List_i prodIt = elms->BeginChildren(); prodIt != elms->EndChildren(); ++prodIt, ++cnt) {
142  // reused projected holder
143  if (cnt < oldSize) {
144  if ((*parentIt)->NumChildren()) {
145  // update projected (mislleading name)
146  for (TEveElement::List_i pci = (*parentIt)->BeginChildren(); pci != (*parentIt)->EndChildren(); pci++)
147  pmgr->ProjectChildrenRecurse(*parentIt);
148  } else {
149  // import projectable
150  pmgr->SubImportChildren(*prodIt, *parentIt);
151  }
152 
153  ++parentIt;
154  } else if (cnt < itemSize) {
155  // new product holder
156  pmgr->SubImportElements(*prodIt, projectedAsElement);
157  } else {
158  break;
159  }
160  }
161  pmgr->SetCurrentDepth(oldDepth);
162  }
163  }
164 
165  if (m_interactionList && itemSize > oldSize) {
166  TEveElement::List_i elIt = elms->BeginChildren();
167  for (size_t cnt = 0; cnt < itemSize; ++cnt, ++elIt) {
168  if (cnt >= oldSize)
169  m_interactionList->added(*elIt, cnt);
170  }
171  }
172  }
173  } catch (const std::runtime_error& iException) {
174  fwLog(fwlog::kError) << "Caught exception in build function for item " << m_item->name() << ":\n"
175  << iException.what() << std::endl;
176  exit(1);
177  }
178  }
179  m_mustBuild = false;
180 }

◆ build() [2/3]

void FWProxyBuilderBase::build
protected

Definition at line 328 of file FWProxyBuilderBase.cc.

328  {
329  assert(
330  "virtual build(const FWEventItem*, TEveElementList*, const FWViewContext*) not implemented by inherited class");
331 }

◆ build() [3/3]

void FWSiStripClusterProxyBuilder::build ( const FWEventItem iItem,
TEveElementList *  product,
const FWViewContext  
)
overrideprotectedvirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 54 of file FWSiStripClusterProxyBuilder.cc.

54  {
56  iItem->get(clusters);
57  if (nullptr == clusters)
58  return;
59  int cntEl = 0;
60 
61  for (TEveElement::List_i ei = product->BeginChildren(); ei != product->EndChildren(); ++ei) {
62  TEveElement* holder = *ei;
63  if (holder->HasChildren()) {
64  holder->SetRnrSelfChildren(false, false);
65  holder->RemoveElement(holder->LastChild());
66  }
67  }
68 
69  // check if need to create more shapes
70  int sdiff = clusters->size() - m_shapeList->NumChildren();
71  for (int i = 0; i <= sdiff; ++i)
72  m_shapeList->AddElement(new TEveGeoShape("Det"));
73 
74  TEveElement::List_i shapeIt = m_shapeList->BeginChildren();
75  for (edmNew::DetSetVector<SiStripCluster>::const_iterator set = clusters->begin(), setEnd = clusters->end();
76  set != setEnd;
77  ++set) {
78  unsigned int id = set->detId();
79  const FWGeometry::GeomDetInfo& info = *iItem->getGeom()->find(id);
80 
81  double array[16] = {info.matrix[0],
82  info.matrix[3],
83  info.matrix[6],
84  0.,
85  info.matrix[1],
86  info.matrix[4],
87  info.matrix[7],
88  0.,
89  info.matrix[2],
90  info.matrix[5],
91  info.matrix[8],
92  0.,
93  info.translation[0],
94  info.translation[1],
95  info.translation[2],
96  1.};
97 
98  // note TEveGeoShape owns shape
99  TEveGeoShape* shape = (TEveGeoShape*)(*shapeIt);
100  shape->SetShape(iItem->getGeom()->getShape(info));
101  shape->SetTransMatrix(array);
102  shape->SetRnrSelf(true);
103  shapeIt++;
104 
105  for (edmNew::DetSet<SiStripCluster>::const_iterator ic = set->begin(), icEnd = set->end(); ic != icEnd; ++ic) {
106  TEveCompound* itemHolder = nullptr;
107  TEveLine* line = nullptr;
108 
109  if (cntEl < product->NumChildren()) {
110  TEveElement::List_i pit = product->BeginChildren();
111  std::advance(pit, cntEl);
112  itemHolder = (TEveCompound*)*pit;
113  itemHolder->SetRnrSelfChildren(true, true);
114 
115  line = (TEveLine*)(itemHolder->FirstChild());
116  setupAddElement(shape, itemHolder);
117  } else {
118  itemHolder = createCompound();
119  setupAddElement(itemHolder, product);
120  line = new TEveLine("line");
121  setupAddElement(line, itemHolder);
122  setupAddElement(shape, itemHolder);
123  }
124  shape->SetMainTransparency(75);
125 
126  // setup line pnts
127  float localTop[3] = {0.0, 0.0, 0.0};
128  float localBottom[3] = {0.0, 0.0, 0.0};
129  fireworks::localSiStrip((*ic).firstStrip(), localTop, localBottom, iItem->getGeom()->getParameters(id), id);
130  float globalTop[3];
131  float globalBottom[3];
132  iItem->getGeom()->localToGlobal(id, localTop, globalTop, localBottom, globalBottom);
133  line->SetPoint(0, globalTop[0], globalTop[1], globalTop[2]);
134  line->SetPoint(1, globalBottom[0], globalBottom[1], globalBottom[2]);
135 
136  cntEl++;
137  }
138  }
139 }

References mps_check::array, bsc_activity_cfg::clusters, FWProxyBuilderBase::createCompound(), FWGeometry::find(), FWEventItem::get(), FWEventItem::getGeom(), FWGeometry::getParameters(), FWGeometry::getShape(), mps_fire::i, triggerObjects_cff::id, info(), mps_splice::line, fireworks::localSiStrip(), FWGeometry::localToGlobal(), m_shapeList, and FWProxyBuilderBase::setupAddElement().

◆ classPurpose()

const std::string & FWSiStripClusterProxyBuilder::classPurpose ( )
static

Definition at line 150 of file FWSiStripClusterProxyBuilder.cc.

◆ classRegisterTypeName()

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

Definition at line 150 of file FWSiStripClusterProxyBuilder.cc.

◆ classTypeName()

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

Definition at line 150 of file FWSiStripClusterProxyBuilder.cc.

◆ classView()

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

Definition at line 150 of file FWSiStripClusterProxyBuilder.cc.

◆ itemBeingDestroyed()

void FWSiStripClusterProxyBuilder::itemBeingDestroyed ( const FWEventItem iItem)
overridevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 49 of file FWSiStripClusterProxyBuilder.cc.

49  {
50  m_shapeList->DestroyElements();
52 }

References FWProxyBuilderBase::itemBeingDestroyed(), and m_shapeList.

◆ localModelChanges()

void FWSiStripClusterProxyBuilder::localModelChanges ( const FWModelId iId,
TEveElement *  iCompound,
FWViewType::EType  viewType,
const FWViewContext vc 
)
overrideprotectedvirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 140 of file FWSiStripClusterProxyBuilder.cc.

143  {
144  increaseComponentTransparency(iId.index(), iCompound, "Det", 60);
145 }

References FWProxyBuilderBase::increaseComponentTransparency(), and FWModelId::index().

◆ operator=()

const FWSiStripClusterProxyBuilder& FWSiStripClusterProxyBuilder::operator= ( const FWSiStripClusterProxyBuilder )
privatedelete

◆ purpose()

const std::string& FWSiStripClusterProxyBuilder::purpose ( ) const
inline

Definition at line 22 of file FWSiStripClusterProxyBuilder.cc.

27 :

◆ typeName()

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

Definition at line 22 of file FWSiStripClusterProxyBuilder.cc.

27 :

◆ view()

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

Definition at line 22 of file FWSiStripClusterProxyBuilder.cc.

27 :

Member Data Documentation

◆ m_shapeList

TEveElementList* FWSiStripClusterProxyBuilder::m_shapeList
private
FWGeometry::GeomDetInfo
Definition: FWGeometry.h:119
fwLog
#define fwLog(_level_)
Definition: fwLog.h:45
mps_fire.i
i
Definition: mps_fire.py:355
FWProxyBuilderBase::m_item
const FWEventItem * m_item
Definition: FWProxyBuilderBase.h:145
FWEventItem::get
void get(const T *&oData) const
Definition: FWEventItem.h:78
FWGeometry::localToGlobal
void localToGlobal(unsigned int id, const float *local, float *global, bool translatep=true) const
Definition: FWGeometry.cc:497
edmNew::DetSetVector::const_iterator
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
Definition: DetSetVectorNew.h:231
cms::cuda::assert
assert(be >=bs)
info
static const TGPicture * info(bool iBackgroundIsBlack)
Definition: FWCollectionSummaryWidget.cc:152
mps_check.array
array
Definition: mps_check.py:216
FWProxyBuilderBase::createCompound
TEveCompound * createCompound(bool set_color=true, bool propagate_color_to_all_children=false) const
Definition: FWProxyBuilderBase.cc:374
FWProxyBuilderBase::itemBeingDestroyed
virtual void itemBeingDestroyed(const FWEventItem *)
Definition: FWProxyBuilderBase.cc:97
FWGeometry::getParameters
const float * getParameters(unsigned int id) const
Definition: FWGeometry.cc:475
FWProxyBuilderBase::layer
int layer() const
Definition: FWProxyBuilderBase.cc:414
FWProxyBuilderBase::m_mustBuild
bool m_mustBuild
Definition: FWProxyBuilderBase.h:149
FWProxyBuilderBase::increaseComponentTransparency
void increaseComponentTransparency(unsigned int index, TEveElement *holder, const std::string &name, Char_t transpOffset)
Definition: FWProxyBuilderBase.cc:393
FWProxyBuilderBase::buildViewType
virtual void buildViewType(const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *)
Definition: FWProxyBuilderBase.cc:333
FWInteractionList::added
void added(TEveElement *, unsigned int)
Definition: FWInteractionList.cc:63
FWModelId::index
int index() const
Definition: FWModelId.h:41
FWProxyBuilderBase::clean
virtual void clean()
Definition: FWProxyBuilderBase.cc:314
bsc_activity_cfg.clusters
clusters
Definition: bsc_activity_cfg.py:36
FWSiStripClusterProxyBuilder::m_shapeList
TEveElementList * m_shapeList
Definition: FWSiStripClusterProxyBuilder.cc:39
FWProxyBuilderBase::Product_it
std::vector< Product * >::iterator Product_it
Definition: FWProxyBuilderBase.h:133
FWProxyBuilderBase::setupAddElement
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
Definition: FWProxyBuilderBase.cc:350
FWProxyBuilderBase::m_interactionList
FWInteractionList * m_interactionList
Definition: FWProxyBuilderBase.h:143
FWProxyBuilderBase::build
void build()
Definition: FWProxyBuilderBase.cc:110
FWEventItem::getGeom
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:548
FWProxyBuilderBase::item
const FWEventItem * item() const
Definition: FWProxyBuilderBase.h:64
edmNew::DetSetVector
Definition: DetSetNew.h:13
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:31
FWGeometry::getShape
TGeoShape * getShape(unsigned int id) const
Definition: FWGeometry.cc:290
fireworks::localSiStrip
void localSiStrip(short strip, float *localTop, float *localBottom, const float *pars, unsigned int id)
Definition: TrackUtils.cc:263
fwlog::kError
Definition: fwLog.h:35
FWProxyBuilderBase::haveSingleProduct
virtual bool haveSingleProduct() const
Definition: FWProxyBuilderBase.h:88
FWEventItem::name
const std::string & name() const
Definition: FWEventItem.cc:435
beamvalidation.exit
def exit(msg="")
Definition: beamvalidation.py:53
mps_splice.line
line
Definition: mps_splice.py:76
FWProxyBuilderBase::m_products
std::vector< Product * > m_products
Definition: FWProxyBuilderBase.h:135
FWEventItem::size
size_t size() const
Definition: FWEventItem.cc:457
edmNew::DetSet::const_iterator
const data_type * const_iterator
Definition: DetSetNew.h:31
FWGeometry::find
IdToInfoItr find(unsigned int) const
Definition: FWGeometry.cc:517