CMS 3D CMS Logo

FWTauProxyBuilderBase.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Calo
4 // Class : FWTauProxyBuilderBase
5 //
6 // Implementation:
7 // [Notes on implementation]
8 //
9 // Original Author: Alja Mrak-Tadel
10 // Created: Thu Oct 21 20:40:28 CEST 2010
11 //
12 
13 // system include files
14 
15 // user include files
16 #include "TGeoTube.h"
17 #include "TEveJetCone.h"
18 #include "TEveGeoNode.h"
19 #include "TEveGeoShape.h"
20 #include "TEveScalableStraightLineSet.h"
21 #include "TEveTrack.h"
22 
33 
35 
38 
39 static const std::string kTauApexBeamSpot("Place Apex In BeamSpot");
40 FWTauProxyBuilderBase::FWTauProxyBuilderBase() : m_minTheta(0), m_maxTheta(0) {}
41 
43 
46  if (iItem) {
47  iItem->getConfig()->assertParam(kTauApexBeamSpot, false);
48  }
49 }
50 
52  const reco::Jet* iJet,
53  TEveElement* comp,
55  const FWViewContext* vc) {
56  // track
57  addLeadTrack(iTau, comp);
58  addConstituentTracks(iTau, comp);
59 
60  // projected markers
61  if (FWViewType::isProjected(type)) {
62  double phi = iTau.phi();
63  double theta = iTau.theta();
64  double size = 1;
65 
66  bool barrel = (theta < context().caloTransAngle() || theta > (TMath::Pi() - context().caloTransAngle()));
67  float ecalR = barrel ? context().caloR1() : context().caloR2();
68  float ecalZ = barrel ? context().caloZ1() : context().caloZ2();
69 
70  TEveScalableStraightLineSet* marker = new TEveScalableStraightLineSet("energy");
71 
72  if (type == FWViewType::kRhoZ) {
73  double r(0);
74  (theta < context().caloTransAngle() || M_PI - theta < context().caloTransAngle()) ? r = ecalZ / fabs(cos(theta))
75  : r = ecalR / sin(theta);
76 
77  fireworks::addRhoZEnergyProjection(this, comp, ecalR, ecalZ, m_minTheta - 0.003, m_maxTheta + 0.003, phi);
78 
79  marker->SetScaleCenter(0., (phi > 0 ? r * fabs(sin(theta)) : -r * fabs(sin(theta))), r * cos(theta));
80  marker->AddLine(0.,
81  (phi > 0 ? r * fabs(sin(theta)) : -r * fabs(sin(theta))),
82  r * cos(theta),
83  0.,
84  (phi > 0 ? (r + size) * fabs(sin(theta)) : -(r + size) * fabs(sin(theta))),
85  (r + size) * cos(theta));
86 
87  } else {
88  std::pair<double, double> phiRange = fireworks::getPhiRange(m_phis, phi);
89  double min_phi = phiRange.first - M_PI / 36 / 2;
90  double max_phi = phiRange.second + M_PI / 36 / 2;
91  if (fabs(phiRange.first - phiRange.first) < 1e-3)
92  {
93  min_phi = phi - M_PI / 36 / 2;
94  max_phi = phi + M_PI / 36 / 2;
95  }
96  TEveGeoManagerHolder gmgr(TEveGeoShape::GetGeoMangeur());
97  TGeoBBox* sc_box = new TGeoTubeSeg(ecalR - 1, ecalR + 1, 1, min_phi * 180 / M_PI, max_phi * 180 / M_PI);
98  TEveGeoShape* shape = fireworks::getShape("spread", sc_box, item()->defaultDisplayProperties().color());
99  shape->SetPickable(kTRUE);
100  setupAddElement(shape, comp);
101 
102  marker->SetScaleCenter(ecalR * cos(phi), ecalR * sin(phi), 0);
103  marker->AddLine(ecalR * cos(phi), ecalR * sin(phi), 0, (ecalR + size) * cos(phi), (ecalR + size) * sin(phi), 0);
104  }
105  marker->SetLineWidth(4);
106  FWViewEnergyScale* caloScale = vc->getEnergyScale();
107  marker->SetScale(caloScale->getScaleFactor3D() * (caloScale->getPlotEt() ? iTau.et() : iTau.energy()));
108  setupAddElement(marker, comp);
109 
110  context().voteMaxEtAndEnergy(iTau.et(), iTau.energy());
111  } else if (iJet) {
112  // jet
113  TEveJetCone* cone = fireworks::makeEveJetCone(*iJet, context());
114  if (item()->getConfig()->value<bool>(kTauApexBeamSpot)) {
115  FWBeamSpot* bs = context().getBeamSpot();
116  cone->SetApex(TEveVector(bs->x0(), bs->y0(), bs->z0()));
117  }
119  cone->SetFillColor(dp.color());
120  cone->SetLineColor(dp.color());
121  setupAddElement(cone, comp);
122  cone->SetMainTransparency(TMath::Min(100, 80 + dp.transparency() / 5));
123  }
124 }
125 
126 // Tracks which passed quality cuts and are inside a tracker signal cone around leading Track
127 void FWTauProxyBuilderBase::addConstituentTracks(const reco::BaseTau& tau, class TEveElement* product) {
128  for (reco::TrackRefVector::iterator i = tau.signalTracks().begin(), iEnd = tau.signalTracks().end(); i != iEnd; ++i) {
129  TEveTrack* track(nullptr);
130  if (i->isAvailable()) {
131  track = fireworks::prepareTrack(**i, context().getTrackPropagator());
132  track->MakeTrack();
133  setupAddElement(track, product);
134  }
135  }
136 }
137 
138 // Leading Track
139 void FWTauProxyBuilderBase::addLeadTrack(const reco::BaseTau& tau, class TEveElement* product) {
140  const reco::TrackRef leadTrack = tau.leadTrack();
141  if (!leadTrack)
142  return;
143 
144  TEveTrack* track = fireworks::prepareTrack(*leadTrack, context().getTrackPropagator());
145  if (track) {
146  track->MakeTrack();
147  setupAddElement(track, product);
148  }
149 }
150 
152  TEveElement* iCompound,
153  FWViewType::EType viewType,
154  const FWViewContext* vc) {
155  if (FWViewType::isProjected(viewType))
156  increaseComponentTransparency(iId.index(), iCompound, "TEveJetCone", 80);
157 }
158 
159 void FWTauProxyBuilderBase::scaleProduct(TEveElementList* product, FWViewType::EType viewType, const FWViewContext* vc) {
160  int idx = 0;
161  for (auto& c : product->RefChildren()) {
162  // check the compound has more than one element (the first one is jet)
163  for (auto& compChld : c->RefChildren()){
164  TEveScalableStraightLineSet* lineSet = dynamic_cast<TEveScalableStraightLineSet*>(compChld);
165  if (lineSet) {
166  // compund index in the product is an index of model data in the collection
167  const void* modelData = item()->modelData(idx);
168  const reco::BaseTau* ptr = (const reco::BaseTau*)(modelData);
169  float value = vc->getEnergyScale()->getPlotEt() ? ptr->et() : ptr->energy();
170  lineSet->SetScale(vc->getEnergyScale()->getScaleFactor3D() * value);
171  for (TEveProjectable::ProjList_i j = lineSet->BeginProjecteds(); j != lineSet->EndProjecteds(); ++j) {
172  (*j)->UpdateProjection();
173  }
174  }
175  }
176  idx++;
177  }
178 }
179 
size
Write out results.
const double Pi
type
Definition: HCALResponse.h:21
const fireworks::Context & context() const
virtual reco::TrackRef leadTrack() const
Definition: BaseTau.cc:26
FWProxyBuilderConfiguration * getConfig() const
Definition: FWEventItem.h:169
float getScaleFactor3D() const
void scaleProduct(TEveElementList *parent, FWViewType::EType, const FWViewContext *vc) override
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:453
std::pair< double, double > getPhiRange(const std::vector< double > &phis, double phi)
Definition: BuilderUtils.cc:21
double x0() const
Definition: FWBeamSpot.cc:30
double theta() const final
momentum polar angle
static float caloTransAngle()
Definition: Context.cc:233
TEveTrack * prepareTrack(const reco::Track &track, TEveTrackPropagator *propagator, const std::vector< TEveVector > &extraRefPoints=std::vector< TEveVector >())
Definition: TrackUtils.cc:69
double z0() const
Definition: FWBeamSpot.cc:40
void addLeadTrack(const reco::BaseTau &tau, class TEveElement *product)
double y0() const
Definition: FWBeamSpot.cc:35
Base class for all types of Jets.
Definition: Jet.h:20
void voteMaxEtAndEnergy(float Et, float energy) const
Definition: Context.cc:183
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
void setItem(const FWEventItem *iItem) override
FWViewEnergyScale * getEnergyScale() const
Geom::Theta< T > theta() const
static float caloZ2(bool offset=true)
Definition: Context.cc:223
T Min(T a, T b)
Definition: MathUtil.h:39
const_iterator end() const
Termination of iteration.
Definition: RefVector.h:253
const_iterator begin() const
Initialize an iterator over the RefVector.
Definition: RefVector.h:248
const FWEventItem * item() const
Color_t color() const
void addConstituentTracks(const reco::BaseTau &tau, class TEveElement *product)
void buildBaseTau(const reco::BaseTau &iTau, const reco::Jet *iJet, TEveElement *comp, FWViewType::EType type, const FWViewContext *vc)
static bool isProjected(int)
Definition: FWViewType.cc:128
Char_t transparency() const
FWBeamSpot * getBeamSpot() const
Definition: Context.h:78
static float caloR2(bool offset=true)
Definition: Context.cc:213
void localModelChanges(const FWModelId &iId, TEveElement *iCompound, FWViewType::EType viewType, const FWViewContext *vc) override
int index() const
Definition: FWModelId.h:49
double et() const final
transverse energy
static const std::string kTauApexBeamSpot("Place Apex In BeamSpot")
virtual void setItem(const FWEventItem *iItem)
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
double energy() const final
energy
static float caloR1(bool offset=true)
Definition: Context.cc:208
Definition: value.py:1
virtual const reco::TrackRefVector & signalTracks() const
Definition: BaseTau.cc:28
#define M_PI
FWGenericParameter< T > * assertParam(const std::string &name, T def)
void addRhoZEnergyProjection(FWProxyBuilderBase *, TEveElement *, double r_ecal, double z_ecal, double theta_min, double theta_max, double phi)
Definition: BuilderUtils.cc:60
auto dp
Definition: deltaR.h:22
static float caloZ1(bool offset=true)
Definition: Context.cc:218
std::vector< double > m_phis
const void * modelData(int iIndex) const
Definition: FWEventItem.cc:569
TEveGeoShape * getShape(const char *name, TGeoBBox *shape, Color_t color)
Definition: BuilderUtils.cc:42
double phi() const final
momentum azimuthal angle
void increaseComponentTransparency(unsigned int index, TEveElement *holder, const std::string &name, Char_t transpOffset)
TEveJetCone * makeEveJetCone(const reco::Jet &iData, const fireworks::Context &context)
bool getPlotEt() const