77 theHitsMin_(iConfig.getParameter<int>(
"HitsMin")),
78 thePruneCut_(iConfig.getParameter<double>(
"PruneCut")),
79 theTimeOffset_(iConfig.getParameter<double>(
"DTTimeOffset")),
80 theError_(iConfig.getParameter<double>(
"HitError")),
81 useSegmentT0_(iConfig.getParameter<bool>(
"UseSegmentT0")),
82 doWireCorr_(iConfig.getParameter<bool>(
"DoWireCorr")),
83 dropTheta_(iConfig.getParameter<bool>(
"DropTheta")),
84 requireBothProjections_(iConfig.getParameter<bool>(
"RequireBothProjections")),
85 debug(iConfig.getParameter<bool>(
"debug"))
115 std::cout <<
" *** Muon Timimng Extractor ***" << std::endl;
131 double totalWeightInvbeta=0;
132 double totalWeightVertex=0;
133 std::vector<TimeMeasurement> tms;
142 std::vector<const DTRecSegment4D*> range =
theMatcher->
matchDT(*muonTrack,iEvent);
145 std::cout <<
" The muon track matches " << range.size() <<
" segments." << std::endl;
149 for (std::vector<const DTRecSegment4D*>::iterator rechit = range.begin(); rechit!=range.end();++rechit) {
152 DetId id = (*rechit)->geographicalId();
155 if (
debug)
std::cout <<
"Matched DT segment in station " << station << std::endl;
158 bool bothProjections = ( ((*rechit)->hasPhi()) && ((*rechit)->hasZed()) );
169 else segm =
dynamic_cast<const DTRecSegment2D*
>((*rechit)->zSegment());
171 if(segm == 0)
continue;
178 for (std::vector<DTRecHit1D>::const_iterator hiti=hits1d.begin(); hiti!=hits1d.end(); hiti++) {
180 const GeomDet* dtcell = theTrackingGeometry->
idToDet(hiti->geographicalId());
183 std::pair< TrajectoryStateOnSurface, double> tsos;
187 double dist_straight = dtcell->
toGlobal(hiti->localPosition()).
mag();
188 if (tsos.first.isValid()) {
189 dist = tsos.second+posp.mag();
192 dist = dist_straight;
196 thisHit.
driftCell = hiti->geographicalId();
207 if (
doWireCorr_ && !bothProjections && tsos.first.isValid()) {
208 const DTLayer* layer = theDTGeom->layer(hiti->wireId());
209 float propgL = layer->
toLocal( tsos.first.globalPosition() ).
y();
210 float wirePropCorr = propgL/24.4*0.00543;
211 if (thisHit.
isLeft) wirePropCorr=-wirePropCorr;
215 tofCorr = (tofCorr/29.979)*0.00543;
216 if (thisHit.
isLeft) tofCorr=-tofCorr;
220 float slCorr = (dist_straight-dist)/29.979*0.00543;
221 if (thisHit.
isLeft) slCorr=-slCorr;
227 tms.push_back(thisHit);
232 bool modified =
false;
233 std::vector <double> dstnc, dsegm, dtraj, hitWeightVertex, hitWeightInvbeta, left;
242 hitWeightVertex.clear();
243 hitWeightInvbeta.clear();
246 std::vector <int> hit_idx;
247 totalWeightInvbeta=0;
251 for (
int sta=1;sta<5;sta++)
253 std::vector <TimeMeasurement> seg;
254 std::vector <int> seg_idx;
256 for (std::vector<TimeMeasurement>::iterator tm=tms.begin(); tm!=tms.end(); ++tm) {
257 if ((tm->station==sta) && (tm->isPhi==
phi)) {
259 seg_idx.push_back(tmpos);
264 unsigned int segsize = seg.size();
268 std::vector <double> hitxl,hitxr,hityl,hityr;
270 for (std::vector<TimeMeasurement>::iterator tm=seg.begin(); tm!=seg.end(); ++tm) {
272 DetId id = tm->driftCell;
280 hitxl.push_back(celly);
281 hityl.push_back(tm->posInLayer);
283 hitxr.push_back(celly);
284 hityr.push_back(tm->posInLayer);
288 if (!
fitT0(a,
b,hitxl,hityl,hitxr,hityr)) {
290 std::cout <<
" t0 = zero, Left hits: " << hitxl.size() <<
" Right hits: " << hitxr.size() << std::endl;
295 if ((!hitxl.size()) || (!hityl.size()))
continue;
298 for (std::vector<TimeMeasurement>::const_iterator tm=seg.begin(); tm!=seg.end(); ++tm) {
300 DetId id = tm->driftCell;
306 double segmLocalPos =
b+layerZ*
a;
307 double hitLocalPos = tm->posInLayer;
308 int hitSide = -tm->isLeft*2+1;
309 double t0_segm = (-(hitSide*segmLocalPos)+(hitSide*hitLocalPos))/0.00543+tm->timeCorr;
311 if (
debug)
std::cout <<
" Segm hit. dstnc: " << tm->distIP <<
" t0: " << t0_segm << std::endl;
313 dstnc.push_back(tm->distIP);
314 dsegm.push_back(t0_segm);
315 left.push_back(hitSide);
316 hitWeightInvbeta.push_back(((
double)seg.size()-2.)*tm->distIP*tm->distIP/((double)seg.size()*30.*30.*
theError_*
theError_));
317 hitWeightVertex.push_back(((
double)seg.size()-2.)/((double)seg.size()*
theError_*
theError_));
318 hit_idx.push_back(seg_idx.at(segidx));
320 totalWeightInvbeta+=((double)seg.size()-2.)*tm->distIP*tm->distIP/((double)seg.size()*30.*30.*
theError_*
theError_);
325 if (totalWeightInvbeta==0)
break;
329 std::cout <<
" Points for global fit: " << dstnc.size() << std::endl;
333 for (
unsigned int i=0;
i<dstnc.size();
i++)
334 invbeta+=(1.+dsegm.at(
i)/dstnc.at(
i)*30.)*hitWeightInvbeta.at(
i)/totalWeightInvbeta;
337 std::vector<TimeMeasurement>::iterator tmmax;
341 for (
unsigned int i=0;
i<dstnc.size();
i++) {
342 diff=(1.+dsegm.at(
i)/dstnc.at(
i)*30.)-invbeta;
343 diff=diff*diff*hitWeightInvbeta.at(
i);
346 tmmax=tms.begin()+hit_idx.at(
i);
351 invbetaerr=
sqrt(invbetaerr/totalWeightInvbeta);
360 std::cout <<
" Measured 1/beta: " << invbeta <<
" +/- " << invbetaerr << std::endl;
364 for (
unsigned int i=0;
i<dstnc.size();
i++) {
365 tmSequence.
dstnc.push_back(dstnc.at(
i));
366 tmSequence.
local_t0.push_back(dsegm.at(
i));
377 DTTimingExtractor::fitT0(
double &
a,
double &
b,
const std::vector<double>& xl,
const std::vector<double>& yl,
const std::vector<double>& xr,
const std::vector<double>& yr ) {
379 double sx=0,sy=0,sxy=0,sxx=0,ssx=0,ssy=0,
s=0,
ss=0;
381 for (
unsigned int i=0;
i<xl.size();
i++) {
392 for (
unsigned int i=0;
i<xr.size();
i++) {
408 a=(ssy*
s*ssx+sxy*
ss*
ss+sy*sx*
s-sy*
ss*ssx-ssy*sx*
ss-sxy*
s*
s)/delta;
409 b=(ssx*sy*ssx+sxx*ssy*
ss+sx*sxy*
s-sxx*sy*
s-ssx*sxy*
ss-sx*ssy*ssx)/delta;
410 t0_corr=(ssx*
s*sxy+sxx*
ss*sy+sx*sx*ssy-sxx*
s*ssy-sx*
ss*sxy-ssx*sx*sy)/delta;
void update(const edm::EventSetup &setup)
update the services each event
T getParameter(std::string const &) const
std::vector< double > local_t0
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
GlobalPoint toGlobal(const Local2DPoint &lp) const
Conversion to the global R.F. from the R.F. of the GeomDet.
LocalPoint toLocal(const GlobalPoint &gp) const
Conversion to the R.F. of the GeomDet.
edm::ESHandle< MagneticField > magneticField() const
get the magnetic field
const Plane & surface() const
The nominal surface of the GeomDet.
virtual const GeomDet * idToDet(DetId) const
const Surface::PositionType & position() const
The position (origin of the R.F.)
edm::ESHandle< GlobalTrackingGeometry > theTrackingGeometry
std::vector< double > weightInvbeta
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const FreeTrajectoryState &, const Surface &) const final
std::vector< DTRecHit1D > specificRecHits() const
Access to specific components.
double totalWeightInvbeta
XYZVectorD XYZVector
spatial vector with cartesian internal representation
XYZPointD XYZPoint
point in space with cartesian internal representation
T const * product() const
const DTSuperLayer * superLayer() const
edm::ESHandle< GlobalTrackingGeometry > trackingGeometry() const
get the tracking geometry
std::vector< const DTRecSegment4D * > matchDT(const reco::Track &muon, const edm::Event &event)
perform the matching
DetId geographicalId() const
double t0() const
Get the segment t0 (if recomputed, 0 is returned otherwise)
int station() const
Return the station number.
std::vector< double > dstnc
if(conf.exists("allCellsPositionCalc"))
const PositionType & position() const
std::vector< double > weightVertex