CMS 3D CMS Logo

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

Public Member Functions

 FWSiStripClusterProxyBuilder (void)
 
 FWSiStripClusterProxyBuilder (const FWSiStripClusterProxyBuilder &)=delete
 
void itemBeingDestroyed (const FWEventItem *) override
 
const FWSiStripClusterProxyBuilderoperator= (const FWSiStripClusterProxyBuilder &)=delete
 
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 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 18 of file FWSiStripClusterProxyBuilder.cc.

Constructor & Destructor Documentation

◆ FWSiStripClusterProxyBuilder() [1/2]

FWSiStripClusterProxyBuilder::FWSiStripClusterProxyBuilder ( void  )

Definition at line 44 of file FWSiStripClusterProxyBuilder.cc.

References m_shapeList.

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

◆ ~FWSiStripClusterProxyBuilder()

FWSiStripClusterProxyBuilder::~FWSiStripClusterProxyBuilder ( void  )
override

Definition at line 49 of file FWSiStripClusterProxyBuilder.cc.

References m_shapeList.

49 { m_shapeList->DecDenyDestroy(); }

◆ FWSiStripClusterProxyBuilder() [2/2]

FWSiStripClusterProxyBuilder::FWSiStripClusterProxyBuilder ( const FWSiStripClusterProxyBuilder )
delete

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 }
size_t size() const
Definition: FWEventItem.cc:457
virtual void buildViewType(const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *)
std::vector< Product * >::iterator Product_it
std::vector< Product * > m_products
virtual bool haveSingleProduct() const
const FWEventItem * m_item
void added(TEveElement *, unsigned int)
#define fwLog(_level_)
Definition: fwLog.h:45
const std::string & name() const
Definition: FWEventItem.cc:435
FWInteractionList * m_interactionList
const FWEventItem * item() const
def exit(msg="")

◆ 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 }
assert(be >=bs)

◆ build() [3/3]

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

Reimplemented from FWProxyBuilderBase.

Definition at line 56 of file FWSiStripClusterProxyBuilder.cc.

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

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

◆ classPurpose()

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

Definition at line 152 of file FWSiStripClusterProxyBuilder.cc.

◆ classRegisterTypeName()

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

Definition at line 152 of file FWSiStripClusterProxyBuilder.cc.

◆ classTypeName()

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

Definition at line 152 of file FWSiStripClusterProxyBuilder.cc.

◆ classView()

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

Definition at line 152 of file FWSiStripClusterProxyBuilder.cc.

◆ itemBeingDestroyed()

void FWSiStripClusterProxyBuilder::itemBeingDestroyed ( const FWEventItem iItem)
overridevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 51 of file FWSiStripClusterProxyBuilder.cc.

References FWProxyBuilderBase::itemBeingDestroyed(), and m_shapeList.

51  {
52  m_shapeList->DestroyElements();
54 }
virtual void itemBeingDestroyed(const FWEventItem *)

◆ localModelChanges()

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

Reimplemented from FWProxyBuilderBase.

Definition at line 142 of file FWSiStripClusterProxyBuilder.cc.

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

145  {
146  increaseComponentTransparency(iId.index(), iCompound, "Det", 60);
147 }
int index() const
Definition: FWModelId.h:41
void increaseComponentTransparency(unsigned int index, TEveElement *holder, const std::string &name, Char_t transpOffset)

◆ operator=()

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

◆ purpose()

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

Definition at line 23 of file FWSiStripClusterProxyBuilder.cc.

◆ typeName()

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

Definition at line 23 of file FWSiStripClusterProxyBuilder.cc.

◆ view()

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

Definition at line 23 of file FWSiStripClusterProxyBuilder.cc.

Member Data Documentation

◆ m_shapeList

TEveElementList* FWSiStripClusterProxyBuilder::m_shapeList
private