CMS 3D CMS Logo

List of all members | Public Member Functions
RPCRecHitStandardAlgo Class Reference

#include <RPCRecHitStandardAlgo.h>

Inheritance diagram for RPCRecHitStandardAlgo:
RPCRecHitBaseAlgo

Public Member Functions

bool compute (const RPCRoll &roll, const RPCCluster &cluster, LocalPoint &point, LocalError &error, float &time, float &timeErr) const override
 standard local recHit computation More...
 
bool compute (const RPCRoll &roll, const RPCCluster &cluster, const float &angle, const GlobalPoint &globPos, LocalPoint &point, LocalError &error, float &time, float &timeErr) const override
 
 RPCRecHitStandardAlgo (const edm::ParameterSet &config)
 Constructor. More...
 
void setES (const edm::EventSetup &setup) override
 Pass the Event Setup to the algo at each event. More...
 
 ~RPCRecHitStandardAlgo () override
 Destructor. More...
 
- Public Member Functions inherited from RPCRecHitBaseAlgo
virtual edm::OwnVector< RPCRecHitreconstruct (const RPCRoll &roll, const RPCDetId &rpcId, const RPCDigiCollection::Range &digiRange, const RollMask &mask)
 Build all hits in the range associated to the rpcId, at the 1st step. More...
 
 RPCRecHitBaseAlgo (const edm::ParameterSet &config)
 Constructor. More...
 
virtual ~RPCRecHitBaseAlgo ()
 Destructor. More...
 

Detailed Description

Concrete implementation of RPCRecHitBaseAlgo.

Author
M. Maggi – INFN Bari

Definition at line 12 of file RPCRecHitStandardAlgo.h.

Constructor & Destructor Documentation

RPCRecHitStandardAlgo::RPCRecHitStandardAlgo ( const edm::ParameterSet config)
inline

Constructor.

Definition at line 15 of file RPCRecHitStandardAlgo.h.

15 :RPCRecHitBaseAlgo(config) {};
RPCRecHitBaseAlgo(const edm::ParameterSet &config)
Constructor.
RPCRecHitStandardAlgo::~RPCRecHitStandardAlgo ( )
inlineoverride

Destructor.

Definition at line 18 of file RPCRecHitStandardAlgo.h.

18 {};

Member Function Documentation

bool RPCRecHitStandardAlgo::compute ( const RPCRoll roll,
const RPCCluster cl,
LocalPoint Point,
LocalError error,
float &  time,
float &  timeErr 
) const
overridevirtual

standard local recHit computation

Implements RPCRecHitBaseAlgo.

Definition at line 18 of file RPCRecHitStandardAlgo.cc.

References funct::abs(), angle(), RPCRoll::centreOfStrip(), RPCCluster::firstStrip(), RPCCluster::hasTime(), RPCCluster::hasY(), RPCRoll::id(), RPCCluster::lastStrip(), RPCRoll::localError(), RPCDetId::region(), Scenarios_cff::scale, RPCRoll::specificTopology(), StripTopology::stripLength(), funct::tan(), RPCCluster::time(), RPCCluster::timeRMS(), RPCRoll::topology(), x, LocalError::xx(), y, and RPCCluster::y().

Referenced by compute(), and setES().

23 {
24  // Get Average Strip position
25  const float fstrip = (roll.centreOfStrip(cluster.firstStrip())).x();
26  const float lstrip = (roll.centreOfStrip(cluster.lastStrip())).x();
27  const float centreOfCluster = (fstrip + lstrip)/2;
28  const double y = cluster.hasY() ? cluster.y() : 0;
29  Point = LocalPoint(centreOfCluster, y, 0);
30 
31  if ( !cluster.hasY() ) {
32  error = LocalError(roll.localError((cluster.firstStrip()+cluster.lastStrip())/2.));
33  }
34  else {
35  // Use the default one for local x error
36  float ex2 = roll.localError((cluster.firstStrip()+cluster.lastStrip())/2.).xx();
37  // Maximum estimate of local y error, (distance to the boundary)/sqrt(3)
38  // which gives consistent error to the default one at y=0
39  const float stripLen = roll.specificTopology().stripLength();
40  const float maxDy = stripLen/2 - std::abs(cluster.y());
41 
42  // Apply x-position correction for the endcap
43  if ( roll.id().region() != 0 ) {
44  const auto& topo = dynamic_cast<const TrapezoidalStripTopology&>(roll.topology());
45  const double angle = topo.stripAngle((cluster.firstStrip()+cluster.lastStrip())/2.);
46  const double x = centreOfCluster - y*std::tan(angle);
47  Point = LocalPoint(x, y, 0);
48 
49  // rescale x-error by the change of local pitch
50  const double scale = topo.localPitch(Point)/topo.pitch();
51  ex2 *= scale*scale;
52  }
53 
54  error = LocalError(ex2, 0, maxDy*maxDy/3.);
55  }
56 
57  if ( cluster.hasTime() ) {
58  time = cluster.time();
59  timeErr = cluster.timeRMS();
60  }
61  else {
62  time = 0;
63  timeErr = -1;
64  }
65 
66  return true;
67 }
float xx() const
Definition: LocalError.h:24
virtual float stripLength() const =0
LocalPoint centreOfStrip(int strip) const
Definition: RPCRoll.cc:52
Point3DBase< Scalar, LocalTag > LocalPoint
Definition: Definitions.h:32
const StripTopology & specificTopology() const
Definition: RPCRoll.cc:107
const Topology & topology() const override
Definition: RPCRoll.cc:30
RPCDetId id() const
Definition: RPCRoll.cc:24
LocalError localError(float strip) const
Definition: RPCRoll.cc:65
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
T angle(T x1, T y1, T z1, T x2, T y2, T z2)
Definition: angle.h:11
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:63
bool RPCRecHitStandardAlgo::compute ( const RPCRoll roll,
const RPCCluster cl,
const float &  angle,
const GlobalPoint globPos,
LocalPoint Point,
LocalError error,
float &  time,
float &  timeErr 
) const
overridevirtual

local recHit computation accounting for track direction and absolute position

Implements RPCRecHitBaseAlgo.

Definition at line 69 of file RPCRecHitStandardAlgo.cc.

References compute().

76 {
77  this->compute(roll,cl,Point,error,time,timeErr);
78  return true;
79 }
bool compute(const RPCRoll &roll, const RPCCluster &cluster, LocalPoint &point, LocalError &error, float &time, float &timeErr) const override
standard local recHit computation
void RPCRecHitStandardAlgo::setES ( const edm::EventSetup setup)
inlineoverridevirtual

Pass the Event Setup to the algo at each event.

Implements RPCRecHitBaseAlgo.

Definition at line 21 of file RPCRecHitStandardAlgo.h.

References angle(), compute(), relativeConstraints::error, point, and protons_cff::time.

21 {};