CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
DTRecHitBaseAlgo Class Referenceabstract

#include <DTRecHitBaseAlgo.h>

Inheritance diagram for DTRecHitBaseAlgo:
DTLinearDriftAlgo DTLinearDriftFromDBAlgo DTNoDriftAlgo DTParametrizedDriftAlgo

Public Member Functions

virtual bool compute (const DTLayer *layer, const DTDigi &digi, LocalPoint &leftPoint, LocalPoint &rightPoint, LocalError &error) const =0
 
virtual bool compute (const DTLayer *layer, const DTRecHit1D &recHit1D, const float &angle, DTRecHit1D &newHit1D) const =0
 
virtual bool compute (const DTLayer *layer, const DTRecHit1D &recHit1D, const float &angle, const GlobalPoint &globPos, DTRecHit1D &newHit1D) const =0
 
 DTRecHitBaseAlgo (const edm::ParameterSet &config)
 Constructor. More...
 
virtual edm::OwnVector< DTRecHit1DPairreconstruct (const DTLayer *layer, const DTLayerId &layerId, const DTDigiCollection::Range &digiRange)
 Build all hits in the range associated to the layerId, at the 1st step. More...
 
virtual void setES (const edm::EventSetup &setup)=0
 Pass the Event Setup to the algo at each event. More...
 
virtual ~DTRecHitBaseAlgo ()
 Destructor. More...
 

Protected Attributes

std::unique_ptr< DTTTrigBaseSynctheSync
 

Detailed Description

Abstract algorithmic class to compute drift distance and error form a DT digi

Author
N. Amapane & G. Cerminara - INFN Torino

Definition at line 33 of file DTRecHitBaseAlgo.h.

Constructor & Destructor Documentation

DTRecHitBaseAlgo::DTRecHitBaseAlgo ( const edm::ParameterSet config)

Constructor.

Definition at line 20 of file DTRecHitBaseAlgo.cc.

References reco::get(), and edm::ParameterSet::getParameter().

20  :
21  theSync{DTTTrigSyncFactory::get()->create(config.getParameter<string>("tTrigMode"),
22  config.getParameter<ParameterSet>("tTrigModeConfig"))}
23 {}
T getParameter(std::string const &) const
std::unique_ptr< DTTTrigBaseSync > theSync
T get(const Candidate &c)
Definition: component.h:55
DTRecHitBaseAlgo::~DTRecHitBaseAlgo ( )
virtual

Destructor.

Definition at line 25 of file DTRecHitBaseAlgo.cc.

25 {}

Member Function Documentation

virtual bool DTRecHitBaseAlgo::compute ( const DTLayer layer,
const DTDigi digi,
LocalPoint leftPoint,
LocalPoint rightPoint,
LocalError error 
) const
pure virtual

First step in computation of Left/Right hits from a Digi. The results are the local position (in MuBarLayer frame) of the Left and Right hit, and the error (which is common). Returns false on failure.

Implemented in DTNoDriftAlgo, DTLinearDriftFromDBAlgo, DTParametrizedDriftAlgo, and DTLinearDriftAlgo.

Referenced by reconstruct().

virtual bool DTRecHitBaseAlgo::compute ( const DTLayer layer,
const DTRecHit1D recHit1D,
const float &  angle,
DTRecHit1D newHit1D 
) const
pure virtual

Second step in hit position computation, for algorithms which support it. The impact angle is given as input, and it's used to improve the hit position (and relative error). The angle is defined in radians, with respect to the perpendicular to the layer plane. Given the local direction, angle=atan(dir.x()/-dir.z()) . This can be used when a SL segment is built, so the impact angle is known but the position along wire is not.

Implemented in DTNoDriftAlgo, DTParametrizedDriftAlgo, DTLinearDriftFromDBAlgo, and DTLinearDriftAlgo.

virtual bool DTRecHitBaseAlgo::compute ( const DTLayer layer,
const DTRecHit1D recHit1D,
const float &  angle,
const GlobalPoint globPos,
DTRecHit1D newHit1D 
) const
pure virtual

Third (and final) step in hits position computation, for algorithms which support it. In addition the the angle, also the global position of the hit is given as input. This allows to get the magnetic field at the hit position (and not only that at the center of the wire). Also the position along the wire is available and can be used to correct the drift time for particle TOF and propagation of signal along the wire.

Implemented in DTNoDriftAlgo, DTParametrizedDriftAlgo, DTLinearDriftFromDBAlgo, and DTLinearDriftAlgo.

OwnVector< DTRecHit1DPair > DTRecHitBaseAlgo::reconstruct ( const DTLayer layer,
const DTLayerId layerId,
const DTDigiCollection::Range digiRange 
)
virtual

Build all hits in the range associated to the layerId, at the 1st step.

Reimplemented in DTNoDriftAlgo.

Definition at line 29 of file DTRecHitBaseAlgo.cc.

References compute(), DTEnums::Left, eostools::move(), edm::OwnVector< T, P >::push_back(), mps_fire::result, and DTEnums::Right.

31  {
33 
34  // Loop over all digis in the given range
35  for (DTDigiCollection::const_iterator digi = digiRange.first;
36  digi != digiRange.second;
37  digi++) {
38  // Get the wireId
39  DTWireId wireId(layerId, (*digi).wire());
40 
41  LocalError tmpErr;
42  LocalPoint lpoint, rpoint;
43  // Call the compute method
44  bool OK = compute(layer, *digi, lpoint, rpoint, tmpErr);
45  if (!OK) continue;
46 
47  // Build a new pair of 1D rechit
48  auto recHitPair = std::make_unique<DTRecHit1DPair>(wireId, *digi);
49 
50  // Set the position and the error of the 1D rechits
51  recHitPair->setPositionAndError(DTEnums::Left, lpoint, tmpErr);
52  recHitPair->setPositionAndError(DTEnums::Right, rpoint, tmpErr);
53 
54  result.push_back(std::move(recHitPair));
55  }
56  return result;
57 }
void push_back(D *&d)
Definition: OwnVector.h:290
std::pair< int, edm::FunctionWithDict > OK
Definition: findMethod.cc:136
std::vector< DigiType >::const_iterator const_iterator
virtual bool compute(const DTLayer *layer, const DTDigi &digi, LocalPoint &leftPoint, LocalPoint &rightPoint, LocalError &error) const =0
def move(src, dest)
Definition: eostools.py:511
virtual void DTRecHitBaseAlgo::setES ( const edm::EventSetup setup)
pure virtual

Pass the Event Setup to the algo at each event.

Implemented in DTLinearDriftFromDBAlgo, DTNoDriftAlgo, DTLinearDriftAlgo, and DTParametrizedDriftAlgo.

Member Data Documentation

std::unique_ptr<DTTTrigBaseSync> DTRecHitBaseAlgo::theSync
protected