CMS 3D CMS Logo

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

#include <GEMRecHitBaseAlgo.h>

Inheritance diagram for GEMRecHitBaseAlgo:
GEMRecHitStandardAlgo

Public Member Functions

virtual bool compute (const GEMEtaPartition &roll, const GEMCluster &cl, LocalPoint &Point, LocalError &error) const =0
 standard local recHit computation More...
 
virtual bool compute (const GEMEtaPartition &roll, const GEMCluster &cl, const float &angle, const GlobalPoint &globPos, LocalPoint &Point, LocalError &error) const =0
 
 GEMRecHitBaseAlgo (const edm::ParameterSet &config)
 Constructor. More...
 
virtual edm::OwnVector< GEMRecHitreconstruct (const GEMEtaPartition &roll, const GEMDetId &gemId, const GEMDigiCollection::Range &digiRange, const EtaPartitionMask &mask)
 Build all hits in the range associated to the gemId, 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 ~GEMRecHitBaseAlgo ()
 Destructor. More...
 

Detailed Description

Abstract algorithmic class to compute Rec Hit form a GEM digi

Author
M. Maggi – INFN Bari

Definition at line 32 of file GEMRecHitBaseAlgo.h.

Constructor & Destructor Documentation

GEMRecHitBaseAlgo::GEMRecHitBaseAlgo ( const edm::ParameterSet config)

Constructor.

Definition at line 20 of file GEMRecHitBaseAlgo.cc.

20  {
21  // theSync = GEMTTrigSyncFactory::get()->create(config.getParameter<string>("tTrigMode"),
22  //config.getParameter<ParameterSet>("tTrigModeConfig"));
23 }
GEMRecHitBaseAlgo::~GEMRecHitBaseAlgo ( )
virtual

Destructor.

Definition at line 25 of file GEMRecHitBaseAlgo.cc.

25 {}

Member Function Documentation

virtual bool GEMRecHitBaseAlgo::compute ( const GEMEtaPartition roll,
const GEMCluster cl,
LocalPoint Point,
LocalError error 
) const
pure virtual

standard local recHit computation

Implemented in GEMRecHitStandardAlgo.

Referenced by reconstruct().

virtual bool GEMRecHitBaseAlgo::compute ( const GEMEtaPartition roll,
const GEMCluster cl,
const float &  angle,
const GlobalPoint globPos,
LocalPoint Point,
LocalError error 
) const
pure virtual

local recHit computation accounting for track direction and absolute position

Implemented in GEMRecHitStandardAlgo.

edm::OwnVector< GEMRecHit > GEMRecHitBaseAlgo::reconstruct ( const GEMEtaPartition roll,
const GEMDetId gemId,
const GEMDigiCollection::Range digiRange,
const EtaPartitionMask mask 
)
virtual

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

Definition at line 29 of file GEMRecHitBaseAlgo.cc.

References GetRecoTauVFromDQM_MC_cff::cl, compute(), GEMClusterizer::doAction(), GEMMaskReClusterizer::doAction(), point, edm::OwnVector< T, P >::push_back(), and query::result.

32  {
34 
35 
36  GEMClusterizer clizer;
37  GEMClusterContainer tcls = clizer.doAction(digiRange);
38  GEMMaskReClusterizer mrclizer;
39  GEMClusterContainer cls = mrclizer.doAction(gemId,tcls,mask);
40 
41 
42  for (GEMClusterContainer::const_iterator cl = cls.begin();
43  cl != cls.end(); cl++){
44 
45  LocalError tmpErr;
47  // Call the compute method
48  bool OK = this->compute(roll, *cl, point, tmpErr);
49  if (!OK) continue;
50 
51  // Build a new pair of 1D rechit
52  int firstClustStrip= cl->firstStrip();
53  int clusterSize=cl->clusterSize();
54  GEMRecHit* recHit = new GEMRecHit(gemId,cl->bx(),firstClustStrip,clusterSize,point,tmpErr);
55 
56 
57  result.push_back(recHit);
58  }
59  return result;
60 }
virtual bool compute(const GEMEtaPartition &roll, const GEMCluster &cl, LocalPoint &Point, LocalError &error) const =0
standard local recHit computation
GEMClusterContainer doAction(const GEMDetId &, GEMClusterContainer &, const EtaPartitionMask &)
std::set< GEMCluster > GEMClusterContainer
void push_back(D *&d)
Definition: OwnVector.h:280
GEMClusterContainer doAction(const GEMDigiCollection::Range &digiRange)
tuple result
Definition: query.py:137
std::pair< int, edm::FunctionWithDict > OK
Definition: findMethod.cc:136
*vegas h *****************************************************used in the default bin number in original ***version of VEGAS is ***a higher bin number might help to derive a more precise ***grade subtle point
Definition: invegas.h:5
virtual void GEMRecHitBaseAlgo::setES ( const edm::EventSetup setup)
pure virtual

Pass the Event Setup to the algo at each event.

Implemented in GEMRecHitStandardAlgo.