CMS 3D CMS Logo

MTDCPEBase.cc
Go to the documentation of this file.
4 
6 
7 // MessageLogger
9 
10 // Magnetic field
12 
13 #include <iostream>
14 
15 using namespace std;
16 
17 //-----------------------------------------------------------------------------
18 // A constructor run for generic and templates
19 //
20 //-----------------------------------------------------------------------------
22  //-----------------------------------------------------------------------------
23  // Fill all variables which are constant for an event (geometry)
24  //-----------------------------------------------------------------------------
25  auto const& dus = geom_.detUnits();
26  unsigned detectors = dus.size();
27  m_DetParams.resize(detectors);
28  LogDebug("MTDCPEBase::fillDetParams():") << "caching " << detectors << "MTD detectors" << endl;
29  for (unsigned i = 0; i != detectors; ++i) {
30  auto& p = m_DetParams[i];
31  p.theDet = dynamic_cast<const MTDGeomDetUnit*>(dus[i]);
32  assert(p.theDet);
33 
34  p.theOrigin = p.theDet->surface().toLocal(GlobalPoint(0, 0, 0));
35 
36  //--- p.theDet->type() returns a GeomDetType, which implements subDetector()
37  p.thePart = p.theDet->type().subDetector();
38 
39  //--- bounds() is implemented in BoundSurface itself.
40  p.theThickness = p.theDet->surface().bounds().thickness();
41 
42  // Cache the det id for templates and generic erros
43  p.theTopol = &(static_cast<const ProxyMTDTopology&>(p.theDet->topology()));
44  assert(p.theTopol);
45  p.theRecTopol = &(static_cast<const RectangularMTDTopology&>(p.theTopol->specificTopology()));
46  assert(p.theRecTopol);
47 
48  //--- The geometrical description of one module/plaquette
49  std::pair<float, float> pitchxy = p.theRecTopol->pitch();
50  p.thePitchX = pitchxy.first; // pitch along x
51  p.thePitchY = pitchxy.second; // pitch along y
52 
53  LogDebug("MTDCPEBase::fillDetParams()") << "***** MTD LAYOUT *****"
54  << " thePart = " << p.thePart << " theThickness = " << p.theThickness
55  << " thePitchX = " << p.thePitchX << " thePitchY = " << p.thePitchY;
56  }
57 }
58 
59 //------------------------------------------------------------------------
60 MTDCPEBase::DetParam const& MTDCPEBase::detParam(const GeomDetUnit& det) const { return m_DetParams.at(det.index()); }
61 
63  //remember measurement point is row(col)+0.5f
64  MeasurementPoint pos(cp.theCluster->x(), cp.theCluster->y());
65 
66  if (cp.theCluster->getClusterErrorX() < 0.) {
67  return dp.theTopol->localPosition(pos);
68  } else {
69  LocalPoint out(cp.theCluster->getClusterPosX(), dp.theTopol->localY(pos.y()));
70  return out;
71  }
72 }
73 
75  MeasurementPoint pos(cp.theCluster->x(), cp.theCluster->y());
76  float sigma2 = cp.theCluster->positionError(sigma_flat);
77  sigma2 *= sigma2;
78  MeasurementError posErr(sigma2, 0, sigma2);
79  LocalError outErr = dp.theTopol->localError(pos, posErr);
80 
81  if (cp.theCluster->getClusterErrorX() < 0.) {
82  return outErr;
83  } else {
84  LocalPoint outPos(cp.theCluster->getClusterPosX(), dp.theTopol->localY(pos.y()));
85  float sigmaX2 = cp.theCluster->getClusterErrorX();
86  sigmaX2 *= sigmaX2;
87  LocalError outErrDet(sigmaX2, 0, outErr.yy());
88  return outErrDet;
89  }
90 }
91 
93  return cp.theCluster->time();
94 }
95 
97  return cp.theCluster->timeError();
98 }
virtual LocalError localError(DetParam const &dp, ClusterParam &cp) const
Definition: MTDCPEBase.cc:74
int index() const
Definition: GeomDet.h:83
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
DetParam const & detParam(const GeomDetUnit &det) const
Definition: MTDCPEBase.cc:60
assert(be >=bs)
static constexpr float sigma_flat
Definition: MTDCPEBase.h:83
const DetContainer & detUnits() const override
Returm a vector of all GeomDet.
Definition: MTDGeometry.h:27
float yy() const
Definition: LocalError.h:24
virtual TimeValue clusterTime(DetParam const &dp, ClusterParam &cp) const
Definition: MTDCPEBase.cc:92
def detectors(dt=True, csc=True, me42=False, chambers=True, superlayers=False, layers=False)
DetParams m_DetParams
Definition: MTDCPEBase.h:101
virtual LocalPoint localPosition(DetParam const &dp, ClusterParam &cp) const
Definition: MTDCPEBase.cc:62
virtual TimeValueError clusterTimeError(DetParam const &dp, ClusterParam &cp) const
Definition: MTDCPEBase.cc:96
const MTDGeometry & geom_
Definition: MTDCPEBase.h:91
MTDCPEBase(edm::ParameterSet const &conf, const MTDGeometry &geom)
Definition: MTDCPEBase.cc:21
#define LogDebug(id)