CMS 3D CMS Logo

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

Public Member Functions

 FWPhase2TrackerCluster1DProxyBuilder (void)
 
 FWPhase2TrackerCluster1DProxyBuilder (const FWPhase2TrackerCluster1DProxyBuilder &)=delete
 
const FWPhase2TrackerCluster1DProxyBuilderoperator= (const FWPhase2TrackerCluster1DProxyBuilder &)=delete
 
const std::string & purpose () const
 
const std::string & typeName () const
 
const std::string & view () const
 
 ~FWPhase2TrackerCluster1DProxyBuilder (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
 
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 ()
 
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 *parent, FWViewType::EType viewType, const FWViewContext *vc) 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 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 20 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

Constructor & Destructor Documentation

◆ FWPhase2TrackerCluster1DProxyBuilder() [1/2]

FWPhase2TrackerCluster1DProxyBuilder::FWPhase2TrackerCluster1DProxyBuilder ( void  )
inline

Definition at line 22 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

22 {}

◆ ~FWPhase2TrackerCluster1DProxyBuilder()

FWPhase2TrackerCluster1DProxyBuilder::~FWPhase2TrackerCluster1DProxyBuilder ( void  )
inlineoverride

Definition at line 23 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

23 {}

◆ FWPhase2TrackerCluster1DProxyBuilder() [2/2]

FWPhase2TrackerCluster1DProxyBuilder::FWPhase2TrackerCluster1DProxyBuilder ( const FWPhase2TrackerCluster1DProxyBuilder )
delete

Member Function Documentation

◆ build() [1/3]

void FWProxyBuilderBase::build
private

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
private

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 FWPhase2TrackerCluster1DProxyBuilder::build ( const FWEventItem iItem,
TEveElementList *  product,
const FWViewContext  
)
overrideprivatevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 40 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

References edmNew::DetSetVector< T >::begin(), bsc_activity_cfg::clusters, FWProxyBuilderBase::createCompound(), FWEventItem::defaultDisplayProperties(), Calorimetry_cff::dp, edmNew::DetSetVector< T >::end(), f, fwLog, relativeConstraints::geom, FWEventItem::get(), FWEventItem::getGeom(), FWProxyBuilderBase::item(), fwlog::kWarning, fireworks::phase2PixelLocalX(), FWProxyBuilderBase::setupAddElement(), and l1trig_cff::shape.

42  {
43  const Phase2TrackerCluster1DCollectionNew* pixels = nullptr;
44 
45  iItem->get(pixels);
46 
47  if (!pixels) {
48  fwLog(fwlog::kWarning) << "failed get SiPixelDigis" << std::endl;
49  return;
50  }
51 
52  for (Phase2TrackerCluster1DCollectionNew::const_iterator set = pixels->begin(), setEnd = pixels->end(); set != setEnd;
53  ++set) {
54  unsigned int id = set->detId();
55 
56  const FWGeometry* geom = iItem->getGeom();
57  const float* pars = geom->getParameters(id);
58  const float* shape = geom->getShapePars(id);
59 
61 
63  itc != edc;
64  ++itc) {
65  TEveElement* itemHolder = createCompound();
66  product->AddElement(itemHolder);
67 
68  if (!geom->contains(id)) {
69  fwLog(fwlog::kWarning) << "failed get geometry of Phase2TrackerCluster1D with detid: " << id << std::endl;
70  continue;
71  }
72 
73  float halfLength = shape[2];
74  float pitchSecond = pars[1];
75 
76  // line
77  //
78  TEveStraightLineSet* lineSet = new TEveStraightLineSet;
79  float localPointBeg[3] = {fireworks::phase2PixelLocalX((*itc).center(), pars, shape),
80  float((*itc).column()) * pitchSecond - halfLength,
81  0.0};
82  float localPointEnd[3] = {fireworks::phase2PixelLocalX((*itc).center(), pars, shape),
83  float((*itc).column() + 1.0) * pitchSecond - halfLength,
84  0.0};
85 
86  float globalPointBeg[3];
87  float globalPointEnd[3];
88  geom->localToGlobal(id, localPointBeg, globalPointBeg);
89  geom->localToGlobal(id, localPointEnd, globalPointEnd);
90 
91  lineSet->AddLine(globalPointBeg, globalPointEnd);
92  lineSet->AddMarker(0, 0.5f);
93 
95  lineSet->SetMarkerColor(dp.color());
96 
97  setupAddElement(lineSet, itemHolder);
98  }
99  }
100 }
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
const_iterator end(bool update=false) const
float phase2PixelLocalX(const double mpx, const float *, const float *)
Definition: TrackUtils.cc:249
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
double f[11][100]
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
const_iterator begin(bool update=false) const
const FWGeometry * getGeom() const
Definition: FWEventItem.cc:548
#define fwLog(_level_)
Definition: fwLog.h:45
TEveCompound * createCompound(bool set_color=true, bool propagate_color_to_all_children=false) const
const FWEventItem * item() const

◆ classPurpose()

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

Definition at line 123 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

◆ classRegisterTypeName()

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

Definition at line 123 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

◆ classTypeName()

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

Definition at line 123 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

◆ classView()

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

Definition at line 123 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

◆ localModelChanges()

void FWPhase2TrackerCluster1DProxyBuilder::localModelChanges ( const FWModelId iId,
TEveElement *  parent,
FWViewType::EType  viewType,
const FWViewContext vc 
)
overrideprivatevirtual

Reimplemented from FWProxyBuilderBase.

Definition at line 102 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

References DummyCfis::c, FWModelId::index(), FWProxyBuilderBase::item(), dqmiolumiharvest::j, eostools::ls(), FWEventItem::modelInfo(), and class-composition::parent.

105  {
106  if (TEveStraightLineSet* ls = dynamic_cast<TEveStraightLineSet*>(*parent->BeginChildren())) {
107  Color_t c = FWProxyBuilderBase::item()->modelInfo(iId.index()).displayProperties().color();
108  for (TEveProjectable::ProjList_i j = ls->BeginProjecteds(); j != ls->EndProjecteds(); ++j) {
109  if (TEveStraightLineSet* pls = dynamic_cast<TEveStraightLineSet*>(*j)) {
110  pls->SetMarkerColor(c);
111  pls->ElementChanged();
112  }
113  }
114 
115  ls->SetMarkerColor(c);
116  ls->ElementChanged();
117  }
118 }
int index() const
Definition: FWModelId.h:41
def ls(path, rec=False)
Definition: eostools.py:349
ModelInfo modelInfo(int iIndex) const
Definition: FWEventItem.cc:446
const FWEventItem * item() const

◆ operator=()

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

◆ purpose()

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

Definition at line 25 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

30 :
31  void localModelChanges(const FWModelId& iId,
void localModelChanges(const FWModelId &iId, TEveElement *parent, FWViewType::EType viewType, const FWViewContext *vc) override

◆ typeName()

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

Definition at line 25 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

30 :
31  void localModelChanges(const FWModelId& iId,
void localModelChanges(const FWModelId &iId, TEveElement *parent, FWViewType::EType viewType, const FWViewContext *vc) override

◆ view()

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

Definition at line 25 of file FWPhase2TrackerCluster1DProxyBuilder.cc.

30 :
31  void localModelChanges(const FWModelId& iId,
void localModelChanges(const FWModelId &iId, TEveElement *parent, FWViewType::EType viewType, const FWViewContext *vc) override