Go to the documentation of this file.00001
00011 #include "RecoMuon/TrackingTools/interface/MuonSeedFromRecHits.h"
00012
00013 #include "RecoMuon/TransientTrackingRecHit/interface/MuonTransientTrackingRecHit.h"
00014
00015 #include "RecoMuon/TrackingTools/interface/MuonPatternRecoDumper.h"
00016
00017 #include "MagneticField/Engine/interface/MagneticField.h"
00018 #include "MagneticField/Records/interface/IdealMagneticFieldRecord.h"
00019
00020 #include "TrackingTools/TrajectoryState/interface/TrajectoryStateTransform.h"
00021 #include "TrackingTools/DetLayers/interface/DetLayer.h"
00022
00023 #include "DataFormats/TrajectoryState/interface/PTrajectoryStateOnDet.h"
00024 #include "DataFormats/Common/interface/OwnVector.h"
00025 #include "FWCore/Framework/interface/EventSetup.h"
00026 #include "FWCore/Framework/interface/ESHandle.h"
00027 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00028
00029 #include "gsl/gsl_statistics.h"
00030
00031 using namespace std;
00032
00033 template <class T> T sqr(const T& t) {return t*t;}
00034
00035 MuonSeedFromRecHits::MuonSeedFromRecHits()
00036 : theField(0)
00037 {
00038 }
00039
00040
00041 TrajectorySeed MuonSeedFromRecHits::createSeed(float ptmean,
00042 float sptmean,
00043 ConstMuonRecHitPointer last) const
00044 {
00045
00046 const std::string metname = "Muon|RecoMuon|MuonSeedFromRecHits";
00047
00048 MuonPatternRecoDumper debug;
00049
00050
00051 double theMinMomentum = 3.0;
00052 int charge=std::copysign(1,ptmean);
00053
00054
00055 if ( fabs(ptmean) < theMinMomentum ) ptmean = theMinMomentum * charge ;
00056
00057 AlgebraicVector t(4);
00058 AlgebraicSymMatrix mat(5,0) ;
00059
00060
00061 LocalPoint segPos=last->localPosition();
00062 GlobalVector mom=last->globalPosition()-GlobalPoint();
00063 GlobalVector polar(GlobalVector::Spherical(mom.theta(),
00064 last->globalDirection().phi(),
00065 1.));
00066 polar *=fabs(ptmean)/polar.perp();
00067 LocalVector segDirFromPos=last->det()->toLocal(polar);
00068
00069 LocalTrajectoryParameters param(segPos,segDirFromPos, charge);
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080 mat = last->parametersError().similarityT( last->projectionMatrix() );
00081
00082
00083 float p_err = sqr(sptmean/(ptmean*ptmean));
00084 mat[0][0]= p_err;
00085
00086
00087 LocalTrajectoryError error(asSMatrix<5>(mat));
00088
00089
00090 TrajectoryStateOnSurface tsos(param, error, last->det()->surface(), theField);
00091
00092
00093
00094
00095
00096
00097
00098
00099 DetId id = last->geographicalId();
00100
00101
00102
00103
00104
00105
00106
00107
00108 PTrajectoryStateOnDet const & seedTSOS =
00109 trajectoryStateTransform::persistentState( tsos ,id.rawId());
00110
00111 edm::OwnVector<TrackingRecHit> container;
00112 for (unsigned l=0; l<theRhits.size(); l++) {
00113 container.push_back( theRhits[l]->hit()->clone() );
00114 }
00115
00116 TrajectorySeed theSeed(seedTSOS,container,alongMomentum);
00117
00118 return theSeed;
00119 }
00120
00121
00122
00123