CMS 3D CMS Logo

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

Public Member Functions

 FWSiPixelClusterProxyBuilder (void)
 
const std::string & purpose () const
 
const std::string & typeName () const
 
const std::string & view () const
 
 ~FWSiPixelClusterProxyBuilder (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
 
 FWSiPixelClusterProxyBuilder (const FWSiPixelClusterProxyBuilder &)=delete
 
const FWSiPixelClusterProxyBuilderoperator= (const FWSiPixelClusterProxyBuilder &)=delete
 

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 24 of file FWSiPixelClusterProxyBuilder.cc.

Constructor & Destructor Documentation

◆ FWSiPixelClusterProxyBuilder() [1/2]

FWSiPixelClusterProxyBuilder::FWSiPixelClusterProxyBuilder ( void  )
inline

Definition at line 26 of file FWSiPixelClusterProxyBuilder.cc.

26 {}

◆ ~FWSiPixelClusterProxyBuilder()

FWSiPixelClusterProxyBuilder::~FWSiPixelClusterProxyBuilder ( void  )
inlineoverride

Definition at line 27 of file FWSiPixelClusterProxyBuilder.cc.

27 {}

◆ FWSiPixelClusterProxyBuilder() [2/2]

FWSiPixelClusterProxyBuilder::FWSiPixelClusterProxyBuilder ( const FWSiPixelClusterProxyBuilder )
privatedelete

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 }

◆ 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 }

◆ build() [3/3]

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

Reimplemented from FWProxyBuilderBase.

Definition at line 41 of file FWSiPixelClusterProxyBuilder.cc.

41  {
42  const SiPixelClusterCollectionNew* pixels = nullptr;
43 
44  iItem->get(pixels);
45 
46  if (!pixels) {
47  fwLog(fwlog::kWarning) << "failed get SiPixelDigis" << std::endl;
48  return;
49  }
50 
51  for (SiPixelClusterCollectionNew::const_iterator set = pixels->begin(), setEnd = pixels->end(); set != setEnd;
52  ++set) {
53  unsigned int id = set->detId();
54 
55  const FWGeometry* geom = iItem->getGeom();
56  const float* pars = geom->getParameters(id);
57 
59 
60  for (edmNew::DetSet<SiPixelCluster>::const_iterator itc = clusters.begin(), edc = clusters.end(); itc != edc;
61  ++itc) {
62  TEveElement* itemHolder = createCompound();
63  product->AddElement(itemHolder);
64 
65  TEvePointSet* pointSet = new TEvePointSet;
66 
67  if (!geom->contains(id)) {
68  fwLog(fwlog::kWarning) << "failed get geometry of SiPixelCluster with detid: " << id << std::endl;
69  continue;
70  }
71 
72  float localPoint[3] = {
73  fireworks::pixelLocalX((*itc).minPixelRow(), pars), fireworks::pixelLocalY((*itc).minPixelCol(), pars), 0.0};
74 
75  float globalPoint[3];
76  geom->localToGlobal(id, localPoint, globalPoint);
77 
78  pointSet->SetNextPoint(globalPoint[0], globalPoint[1], globalPoint[2]);
79 
80  setupAddElement(pointSet, itemHolder);
81 
82  TEveStraightLineSet* ls = new TEveStraightLineSet();
83  for (int j = 0; j < (*itc).size(); j++) {
84  // float adc= (*itc).pixel(j).adc*0.03/5000.;
85  float adc = 0.025;
86  float offsetx[4] = {-0.4, -0.4, +0.4, +0.4};
87  float offsety[4] = {-0.4, +0.4, +0.4, -0.4};
88  // float vert[24];
89 
90  std::vector<TEveVector> boxCorners;
91  for (int of = 0; of < 8; of++) {
92  float lp[3] = {fireworks::pixelLocalX((*itc).pixel(j).x + offsetx[of % 4], pars),
93  fireworks::pixelLocalY((*itc).pixel(j).y + offsety[of % 4], pars),
94  (of < 4) ? (0.0f) : (adc)};
95 
96  TEveVector p;
97  geom->localToGlobal(id, lp, p.Arr());
98 
99  boxCorners.push_back(p);
100  }
101 
102  // bottom
103  ls->AddLine(boxCorners[0], boxCorners[1]);
104  ls->AddLine(boxCorners[1], boxCorners[2]);
105  ls->AddLine(boxCorners[2], boxCorners[3]);
106  ls->AddLine(boxCorners[3], boxCorners[0]);
107  // top
108  ls->AddLine(boxCorners[4], boxCorners[5]);
109  ls->AddLine(boxCorners[5], boxCorners[6]);
110  ls->AddLine(boxCorners[6], boxCorners[7]);
111  ls->AddLine(boxCorners[7], boxCorners[4]);
112  // sides
113  ls->AddLine(boxCorners[0], boxCorners[4]);
114  ls->AddLine(boxCorners[1], boxCorners[5]);
115  ls->AddLine(boxCorners[2], boxCorners[6]);
116  ls->AddLine(boxCorners[3], boxCorners[7]);
117  }
118 
119  setupAddElement(ls, itemHolder);
120  }
121  }
122 }

References ecalLiteDTU::adc(), edmNew::DetSetVector< T >::begin(), bsc_activity_cfg::clusters, FWProxyBuilderBase::createCompound(), edmNew::DetSetVector< T >::end(), fwLog, relativeConstraints::geom, FWEventItem::get(), FWEventItem::getGeom(), dqmiolumiharvest::j, fwlog::kWarning, eostools::ls(), AlCaHLTBitMon_ParallelJobs::p, fireworks::pixelLocalX(), fireworks::pixelLocalY(), and FWProxyBuilderBase::setupAddElement().

◆ classPurpose()

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

Definition at line 127 of file FWSiPixelClusterProxyBuilder.cc.

◆ classRegisterTypeName()

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

Definition at line 127 of file FWSiPixelClusterProxyBuilder.cc.

◆ classTypeName()

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

Definition at line 127 of file FWSiPixelClusterProxyBuilder.cc.

◆ classView()

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

Definition at line 127 of file FWSiPixelClusterProxyBuilder.cc.

◆ operator=()

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

◆ purpose()

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

Definition at line 29 of file FWSiPixelClusterProxyBuilder.cc.

31 :
32  // Disable default copy constructor

◆ typeName()

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

Definition at line 29 of file FWSiPixelClusterProxyBuilder.cc.

31 :
32  // Disable default copy constructor

◆ view()

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

Definition at line 29 of file FWSiPixelClusterProxyBuilder.cc.

31 :
32  // Disable default copy constructor
eostools.ls
def ls(path, rec=False)
Definition: eostools.py:349
fwLog
#define fwLog(_level_)
Definition: fwLog.h:45
mps_fire.i
i
Definition: mps_fire.py:428
FWGeometry
Definition: FWGeometry.h:27
fireworks::pixelLocalX
float pixelLocalX(const double mpx, const float *)
Definition: TrackUtils.cc:159
FWProxyBuilderBase::m_item
const FWEventItem * m_item
Definition: FWProxyBuilderBase.h:145
FWEventItem::get
void get(const T *&oData) const
Definition: FWEventItem.h:78
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
edmNew::DetSetVector::const_iterator
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
Definition: DetSetVectorNew.h:197
cms::cuda::assert
assert(be >=bs)
edmNew::DetSetVector::begin
const_iterator begin(bool update=false) const
Definition: DetSetVectorNew.h:530
FWProxyBuilderBase::createCompound
TEveCompound * createCompound(bool set_color=true, bool propagate_color_to_all_children=false) const
Definition: FWProxyBuilderBase.cc:374
ecalLiteDTU::adc
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
Definition: EcalLiteDTUSample.h:12
FWProxyBuilderBase::layer
int layer() const
Definition: FWProxyBuilderBase.cc:414
FWProxyBuilderBase::m_mustBuild
bool m_mustBuild
Definition: FWProxyBuilderBase.h:149
edmNew::DetSet
Definition: DetSetNew.h:22
relativeConstraints.geom
geom
Definition: relativeConstraints.py:72
FWProxyBuilderBase::buildViewType
virtual void buildViewType(const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *)
Definition: FWProxyBuilderBase.cc:333
fireworks::pixelLocalY
float pixelLocalY(const double mpy, const float *)
Definition: TrackUtils.cc:209
FWInteractionList::added
void added(TEveElement *, unsigned int)
Definition: FWInteractionList.cc:63
FWProxyBuilderBase::clean
virtual void clean()
Definition: FWProxyBuilderBase.cc:314
bsc_activity_cfg.clusters
clusters
Definition: bsc_activity_cfg.py:36
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
fwlog::kWarning
Definition: fwLog.h:35
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
edmNew::DetSetVector::end
const_iterator end(bool update=false) const
Definition: DetSetVectorNew.h:535
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
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
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