CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
RPCRecHitStandardAlgo Class Reference

#include <RPCRecHitStandardAlgo.h>

Inheritance diagram for RPCRecHitStandardAlgo:
RPCRecHitBaseAlgo

Public Member Functions

virtual bool compute (const RPCRoll &roll, const RPCCluster &cluster, LocalPoint &point, LocalError &error) const
 standard local recHit computation More...
 
virtual bool compute (const RPCRoll &roll, const RPCCluster &cluster, const float &angle, const GlobalPoint &globPos, LocalPoint &point, LocalError &error) const
 
 RPCRecHitStandardAlgo (const edm::ParameterSet &config)
 Constructor. More...
 
virtual void setES (const edm::EventSetup &setup)
 Pass the Event Setup to the algo at each event. More...
 
virtual ~RPCRecHitStandardAlgo ()
 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.

Date:
2006/04/18 16:28:31
Revision:
1.1
Author
M. Maggi – INFN Bari

Definition at line 16 of file RPCRecHitStandardAlgo.h.

Constructor & Destructor Documentation

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

Constructor.

Definition at line 18 of file RPCRecHitStandardAlgo.cc.

18  :
19  RPCRecHitBaseAlgo(config)
20 {
21 }
RPCRecHitBaseAlgo(const edm::ParameterSet &config)
Constructor.
RPCRecHitStandardAlgo::~RPCRecHitStandardAlgo ( )
virtual

Destructor.

Definition at line 25 of file RPCRecHitStandardAlgo.cc.

26 {
27 }

Member Function Documentation

bool RPCRecHitStandardAlgo::compute ( const RPCRoll roll,
const RPCCluster cl,
LocalPoint Point,
LocalError error 
) const
virtual

standard local recHit computation

Implements RPCRecHitBaseAlgo.

Definition at line 37 of file RPCRecHitStandardAlgo.cc.

References RPCRoll::centreOfStrip(), RPCCluster::firstStrip(), RPCCluster::lastStrip(), and RPCRoll::localError().

Referenced by compute().

41 {
42  // Get Average Strip position
43  float fstrip = (roll.centreOfStrip(cluster.firstStrip())).x();
44  float lstrip = (roll.centreOfStrip(cluster.lastStrip())).x();
45  float centreOfCluster = (fstrip + lstrip)/2;
46 
47  LocalPoint loctemp2(centreOfCluster,0.,0.);
48 
49  Point = loctemp2;
50  error = roll.localError((cluster.firstStrip()+cluster.lastStrip())/2.);
51  return true;
52 }
LocalPoint centreOfStrip(int strip) const
Definition: RPCRoll.cc:52
LocalError localError(float strip) const
Definition: RPCRoll.cc:65
bool RPCRecHitStandardAlgo::compute ( const RPCRoll roll,
const RPCCluster cl,
const float &  angle,
const GlobalPoint globPos,
LocalPoint Point,
LocalError error 
) const
virtual

local recHit computation accounting for track direction and absolute position

Implements RPCRecHitBaseAlgo.

Definition at line 55 of file RPCRecHitStandardAlgo.cc.

References compute(), and PV3DBase< T, PVType, FrameType >::z().

61 {
62 
63  // Glob Pos and angle not used so far...
64  if (globPos.z()<0){ } // Fake use to avoid warnings
65  if (angle<0.){ } // Fake use to avoid warnings
66  this->compute(roll,cl,Point,error);
67  return true;
68 }
virtual bool compute(const RPCRoll &roll, const RPCCluster &cluster, LocalPoint &point, LocalError &error) const
standard local recHit computation
T z() const
Definition: PV3DBase.h:64
T angle(T x1, T y1, T z1, T x2, T y2, T z2)
Definition: angle.h:11
void RPCRecHitStandardAlgo::setES ( const edm::EventSetup setup)
virtual

Pass the Event Setup to the algo at each event.

Implements RPCRecHitBaseAlgo.

Definition at line 31 of file RPCRecHitStandardAlgo.cc.

31  {
32 }