CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SeedForPhotonConversion1Leg.cc
Go to the documentation of this file.
2 
18 
19 //#define mydebug_seed
20 template <class T> T sqr( T t) {return t*t;}
21 
23  TrajectorySeedCollection & seedCollection,
24  const SeedingHitSet & hits,
25  const GlobalPoint & vertex,
26  const GlobalVector & vertexBounds,
27  float ptmin,
28  const edm::EventSetup& es,
29  float cotTheta, std::stringstream& ss)
30 {
31  pss = &ss;
32  if ( hits.size() < 2) return 0;
33 
34  GlobalTrajectoryParameters kine = initialKinematic(hits, vertex, es, cotTheta);
35  float sinTheta = sin(kine.momentum().theta());
36 
37  CurvilinearTrajectoryError error = initialError(vertexBounds, ptmin, sinTheta);
38  FreeTrajectoryState fts(kine, error);
39 
40  return buildSeed(seedCollection,hits,fts,es);
41 }
42 
43 
45  const SeedingHitSet & hits,
46  const GlobalPoint & vertexPos,
47  const edm::EventSetup& es,
48  const float cotTheta) const
49 {
51 
54 
55 
56  FastHelix helix(tth2->globalPosition(), tth1->globalPosition(), vertexPos, es, vertexPos);
57  kine = helix.stateAtVertex().parameters();
58 
59  //force the pz/pt equal to the measured one
60  if(fabs(cotTheta)<cotTheta_Max)
61  kine = GlobalTrajectoryParameters(kine.position(),
62  GlobalVector(kine.momentum().x(),kine.momentum().y(),kine.momentum().perp()*cotTheta),
63  kine.charge(),
64  & kine.magneticField()
65  );
66  else
68  GlobalVector(kine.momentum().x(),kine.momentum().y(),kine.momentum().perp()*cotTheta_Max),
69  kine.charge(),
70  & kine.magneticField()
71  );
72 
73 #ifdef mydebug_seed
74  uint32_t detid;
75  (*pss) << "[SeedForPhotonConversion1Leg] initialKinematic tth1 " ;
76  detid=tth1->geographicalId().rawId();
77  po.print(*pss, detid );
78  (*pss) << " \t " << detid << " " << tth1->localPosition() << " " << tth1->globalPosition() ;
79  detid= tth2->geographicalId().rawId();
80  (*pss) << " \n\t tth2 ";
81  po.print(*pss, detid );
82  (*pss) << " \t " << detid << " " << tth2->localPosition() << " " << tth2->globalPosition()
83  << "\nhelix momentum " << kine.momentum() << " pt " << kine.momentum().perp() << " radius " << 1/kine.transverseCurvature();
84 #endif
85 
87  es.get<IdealMagneticFieldRecord>().get(bfield);
88  bool isBOFF = ( std::abs(bfield->inTesla(GlobalPoint(0,0,0)).z()) < 1e-3 );
89  if (isBOFF && (theBOFFMomentum > 0)) {
91  kine.momentum().unit() * theBOFFMomentum,
92  kine.charge(),
93  &*bfield);
94  }
95  return kine;
96 }
97 
98 
99 
102  const GlobalVector& vertexBounds,
103  float ptMin,
104  float sinTheta) const
105 {
106  // Set initial uncertainty on track parameters, using only P.V. constraint and no hit
107  // information.
108  GlobalError vertexErr( sqr(vertexBounds.x()), 0,
109  sqr(vertexBounds.y()), 0, 0,
110  sqr(vertexBounds.z())
111  );
112 
113 
114  AlgebraicSymMatrix55 C = ROOT::Math::SMatrixIdentity();
115 
116 // FIXME: minC00. Prevent apriori uncertainty in 1/P from being too small,
117 // to avoid instabilities.
118 // N.B. This parameter needs optimising ...
119  float sin2th = sqr(sinTheta);
120  float minC00 = 1.0;
121  C[0][0] = std::max(sin2th/sqr(ptMin), minC00);
122  float zErr = vertexErr.czz();
123  float transverseErr = vertexErr.cxx(); // assume equal cxx cyy
124  C[3][3] = transverseErr;
125  C[4][4] = zErr*sin2th + transverseErr*(1-sin2th);
126 
127  return CurvilinearTrajectoryError(C);
128 }
129 
131  TrajectorySeedCollection & seedCollection,
132  const SeedingHitSet & hits,
133  const FreeTrajectoryState & fts,
134  const edm::EventSetup& es) const
135 {
136  // get tracker
138  es.get<TrackerDigiGeometryRecord>().get(tracker);
139 
140  // get propagator
141  edm::ESHandle<Propagator> propagatorHandle;
142  es.get<TrackingComponentsRecord>().get(thePropagatorLabel, propagatorHandle);
143  const Propagator* propagator = &(*propagatorHandle);
144 
145  // get updator
146  KFUpdator updator;
147 
148  // Now update initial state track using information from seed hits.
149 
150  TrajectoryStateOnSurface updatedState;
152 
153  const TrackingRecHit* hit = 0;
154  for ( unsigned int iHit = 0; iHit < hits.size() && iHit<1; iHit++) {
155  hit = hits[iHit]->hit();
156  TrajectoryStateOnSurface state = (iHit==0) ?
157  propagator->propagate(fts,tracker->idToDet(hit->geographicalId())->surface())
158  : propagator->propagate(updatedState, tracker->idToDet(hit->geographicalId())->surface());
159  if (!state.isValid()) return 0;
160 
162 
163  TransientTrackingRecHit::RecHitPointer newtth = refitHit( tth, state);
164 
165 
166  if (!checkHit(state,newtth,es)) return 0;
167 
168  updatedState = updator.update(state, *newtth);
169  if (!updatedState.isValid()) return 0;
170 
171  seedHits.push_back(newtth->hit()->clone());
172 #ifdef mydebug_seed
173  uint32_t detid = hit->geographicalId().rawId();
174  (*pss) << "\n[SeedForPhotonConversion1Leg] hit " << iHit;
175  po.print(*pss, detid);
176  (*pss) << " " << detid << "\t lp " << hit->localPosition()
177  << " tth " << tth->localPosition() << " newtth " << newtth->localPosition() << " state " << state.globalMomentum().perp();
178 #endif
179  }
180 
181 
182  PTrajectoryStateOnDet const & PTraj =
184 
185  seedCollection.push_back( TrajectorySeed(PTraj,seedHits,alongMomentum));
186  return &seedCollection.back();
187 }
188 
191  const TrajectoryStateOnSurface &state) const
192 {
193  //const TransientTrackingRecHit* a= hit.get();
194  //return const_cast<TransientTrackingRecHit*> (a);
195  //This was modified otherwise the rechit will have just the local x component and local y=0
196  // To understand how to modify for pixels
197 
198  //const TSiStripRecHit2DLocalPos* b = dynamic_cast<const TSiStripRecHit2DLocalPos*>(a);
199  //return const_cast<TSiStripRecHit2DLocalPos*>(b);
200  return hit->clone(state);
201 }
std::pair< ALIstring, ALIstring > pss
Definition: Fit.h:27
T perp() const
Definition: PV3DBase.h:71
virtual const TrajectorySeed * buildSeed(TrajectorySeedCollection &seedCollection, const SeedingHitSet &hits, const FreeTrajectoryState &fts, const edm::EventSetup &es) const
virtual GlobalTrajectoryParameters initialKinematic(const SeedingHitSet &hits, const GlobalPoint &vertexPos, const edm::EventSetup &es, const float cotTheta) const
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
PTrajectoryStateOnDet persistentState(const TrajectoryStateOnSurface &ts, unsigned int detid)
T y() const
Definition: PV3DBase.h:62
#define abs(x)
Definition: mlp_lapack.h:159
virtual const TrajectorySeed * trajectorySeed(TrajectorySeedCollection &seedCollection, const SeedingHitSet &hits, const GlobalPoint &vertex, const GlobalVector &vertexBounds, float ptmin, const edm::EventSetup &es, float cotTheta, std::stringstream &ss)
ROOT::Math::SMatrix< double, 5, 5, ROOT::Math::MatRepSym< double, 5 > > AlgebraicSymMatrix55
Geom::Theta< T > theta() const
Definition: PV3DBase.h:74
uint32_t rawId() const
get the raw id
Definition: DetId.h:45
void push_back(D *&d)
Definition: OwnVector.h:273
std::vector< TrajectorySeed > TrajectorySeedCollection
const T & max(const T &a, const T &b)
T z() const
Definition: PV3DBase.h:63
void print(std::stringstream &ss, const SiStripCluster &clus)
virtual TrajectoryStateOnSurface propagate(const FreeTrajectoryState &, const Surface &) const
Definition: Propagator.cc:12
Vector3DBase unit() const
Definition: Vector3DBase.h:57
const T & get() const
Definition: EventSetup.h:55
char state
Definition: procUtils.cc:75
double ptmin
Definition: HydjetWrapper.h:86
GlobalVector globalMomentum() const
TrajectoryStateOnSurface update(const TrajectoryStateOnSurface &, const TransientTrackingRecHit &) const
Definition: KFUpdator.cc:10
Square< F >::type sqr(const F &f)
Definition: Square.h:13
virtual TransientTrackingRecHit::RecHitPointer refitHit(const TransientTrackingRecHit::ConstRecHitPointer &hit, const TrajectoryStateOnSurface &state) const
unsigned int size() const
Definition: SeedingHitSet.h:31
const MagneticField & magneticField() const
DetId geographicalId() const
virtual bool checkHit(const TrajectoryStateOnSurface &, const TransientTrackingRecHit::ConstRecHitPointer &hit, const edm::EventSetup &es) const
long double T
T x() const
Definition: PV3DBase.h:61
virtual LocalPoint localPosition() const =0
Global3DVector GlobalVector
Definition: GlobalVector.h:10
virtual CurvilinearTrajectoryError initialError(const GlobalVector &vertexBounds, float ptMin, float sinTheta) const