CMS 3D CMS Logo

TrackAssociatorByChi2Impl.h
Go to the documentation of this file.
1 #ifndef TrackAssociatorByChi2Impl_h
2 #define TrackAssociatorByChi2Impl_h
3 
19 
20 #include<map>
21 
22 //Note that the Association Map is filled with -ch2 and not chi2 because it is ordered using std::greater:
23 //the track with the lowest association chi2 will be the first in the output map.
24 
25 namespace reco{
30  <edm::View<reco::Track>, reco::GenParticleCollection, double> >
32 }
33 
34 
36 
37  public:
38  typedef std::map<double, SimTrack> Chi2SimMap;
39  typedef std::pair< reco::Track, Chi2SimMap> RecoToSimPair;
40  typedef std::vector< RecoToSimPair > RecoToSimPairAssociation;
41 
42  /*
44  TrackAssociatorByChi2Impl(const edm::ESHandle<MagneticField> mF, const edm::ParameterSet& conf):
45  chi2cut(conf.getParameter<double>("chi2cut")),
46  onlyDiagonal(conf.getParameter<bool>("onlyDiagonal")),
47  bsSrc(conf.getParameter<edm::InputTag>("beamSpot")) {
48  theMF=mF;
49  if (onlyDiagonal)
50  edm::LogInfo("TrackAssociator") << " ---- Using Off Diagonal Covariance Terms = 0 ---- " << "\n";
51  else
52  edm::LogInfo("TrackAssociator") << " ---- Using Off Diagonal Covariance Terms != 0 ---- " << "\n";
53  }
54  */
55 
58  const reco::BeamSpot& bs,
59  double chi2Cut, bool onlyDiag):
60  theMF(&mF),
61  theBeamSpot(&bs),
62  chi2cut(chi2Cut),
63  onlyDiagonal(onlyDiag) {
64  }
65 
66 
68 
70  const edm::RefVector<TrackingParticleCollection>&) const override;
72 
74  const edm::RefVector<TrackingParticleCollection>&) const override;
75 
77 
79  const edm::Handle<TrackingParticleCollection>& tPCH) const override {
81  }
82 
84 
86  const edm::Handle<TrackingParticleCollection>& tPCH) const override {
88  }
89 
90  private:
92  double getChi2(const reco::TrackBase::ParameterVector& rParameters,
93  const reco::TrackBase::CovarianceMatrix& recoTrackCovMatrix,
94  const Basic3DVector<double>& momAtVtx,
95  const Basic3DVector<double>& vert,
96  int charge,
97  const reco::BeamSpot&) const;
98 
101  double chi2cut;
103 };
104 
105 #endif
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
const reco::BeamSpot * theBeamSpot
edm::AssociationMap< edm::OneToManyWithQualityGeneric< reco::GenParticleCollection, edm::View< reco::Track >, double > > GenToRecoCollection
math::Vector< dimension >::type ParameterVector
parameter vector
Definition: TrackBase.h:74
reco::SimToRecoCollection associateSimToReco(const edm::Handle< edm::View< reco::Track > > &tCH, const edm::Handle< TrackingParticleCollection > &tPCH) const override
compare reco to sim the handle of reco::Track and TrackingParticle collections
std::vector< RecoToSimPair > RecoToSimPairAssociation
std::pair< reco::Track, Chi2SimMap > RecoToSimPair
virtual reco::RecoToSimCollection associateRecoToSim(const edm::Handle< edm::View< reco::Track >> &tCH, const edm::Handle< TrackingParticleCollection > &tPCH) const
virtual reco::SimToRecoCollection associateSimToReco(const edm::Handle< edm::View< reco::Track >> &tCH, const edm::Handle< TrackingParticleCollection > &tPCH) const
TrackAssociatorByChi2Impl(const MagneticField &mF, const reco::BeamSpot &bs, double chi2Cut, bool onlyDiag)
Constructor.
fixed size matrix
std::map< double, SimTrack > Chi2SimMap
edm::AssociationMap< edm::OneToManyWithQualityGeneric< edm::View< reco::Track >, reco::GenParticleCollection, double > > RecoToGenCollection
reco::RecoToSimCollection associateRecoToSim(const edm::Handle< edm::View< reco::Track > > &tCH, const edm::Handle< TrackingParticleCollection > &tPCH) const override
compare reco to sim the handle of reco::Track and TrackingParticle collections
math::Error< dimension >::type CovarianceMatrix
5 parameter covariance matrix
Definition: TrackBase.h:77