10 #include <phfield/PHField.h>
21 #include <TGraphErrors.h>
31 static bool inited =
false;
34 static int MaxHitsDC0;
35 static int MaxHitsDC1;
36 static int MaxHitsDC2;
37 static int MaxHitsDC3p;
38 static int MaxHitsDC3m;
41 static double SAGITTA_DUMP_CENTER;
42 static double SAGITTA_DUMP_WIDTH;
43 static double SAGITTA_TARGET_CENTER;
44 static double SAGITTA_TARGET_WIDTH;
45 static double Z_TARGET;
53 static double INVP_MAX;
54 static double INVP_MIN;
55 static double Z_KMAG_BEND;
58 static double MUID_REJECTION;
59 static double MUID_Z_REF;
60 static double MUID_R_CUT;
61 static double MUID_THE_P0;
62 static double MUID_EMP_P0;
63 static double MUID_EMP_P1;
64 static double MUID_EMP_P2;
65 static int MUID_MINHITS;
68 static double MERGE_THRES;
74 static bool REQUIRE_MUID;
78 static bool COSMIC_MODE;
79 static bool COARSE_MODE;
80 static std::string HIT_MASK_MODE;
83 void initGlobalVariables()
111 SAGITTA_TARGET_CENTER = rc->
get_DoubleFlag(
"SAGITTA_TARGET_CENTER");
112 SAGITTA_TARGET_WIDTH = rc->
get_DoubleFlag(
"SAGITTA_TARGET_WIDTH");
136 initGlobalVariables();
139 cout <<
"Initialization of KalmanFastTracking ..." << endl;
140 cout <<
"========================================" << endl;
143 _timers.insert(std::make_pair<std::string, PHTimer*>(
"st2",
new PHTimer(
"st2")));
144 _timers.insert(std::make_pair<std::string, PHTimer*>(
"st3",
new PHTimer(
"st3")));
145 _timers.insert(std::make_pair<std::string, PHTimer*>(
"st23",
new PHTimer(
"st23")));
146 _timers.insert(std::make_pair<std::string, PHTimer*>(
"global",
new PHTimer(
"global")));
147 _timers.insert(std::make_pair<std::string, PHTimer*>(
"global_st1",
new PHTimer(
"global_st1")));
148 _timers.insert(std::make_pair<std::string, PHTimer*>(
"global_link",
new PHTimer(
"global_link")));
149 _timers.insert(std::make_pair<std::string, PHTimer*>(
"global_kalman",
new PHTimer(
"global_kalman")));
150 _timers.insert(std::make_pair<std::string, PHTimer*>(
"kalman",
new PHTimer(
"kalman")));
163 extern Int_t gErrorIgnoreLevel;
164 gErrorIgnoreLevel = 9999;
249 double x_min, x_max, y_min, y_max;
252 x_min -= (factor*(x_max - x_min));
253 x_max += (factor*(x_max - x_min));
254 y_min -= (factor*(y_max - y_min));
255 y_max += (factor*(y_max - y_min));
265 cout <<
"========================" << endl;
266 cout <<
"Hodo. masking settings: " << endl;
267 for(
int i = 0; i < 4; i++)
269 cout <<
"For station " << i+1 << endl;
277 std::cout <<
"Masking stations for tracklets with stationID = " << i + 1 <<
": " << std::endl;
280 std::cout << *iter <<
" ";
282 std::cout << std::endl;
310 cout <<
"=============" << endl;
311 cout <<
"Chamber IDs: " << endl;
312 TString stereoNames[3] = {
"X",
"U",
"V"};
315 for(
int j = 0; j < 3; j++) cout << i <<
" " << stereoNames[j].Data() <<
": " <<
superIDs[i][j] << endl;
318 cout <<
"Proptube IDs: " << endl;
321 for(
int j = 0; j < 2; j++) cout << i <<
" " << j <<
": " <<
superIDs[i][j] << endl;
325 cout <<
"======================" << endl;
326 cout <<
"U plane window sizes: " << endl;
329 double u_factor[] = {5., 5., 5., 15., 15.};
349 cout <<
"Station " << i <<
": " << xID <<
" " << uID <<
" " << vID <<
" " <<
u_win[i] << endl;
391 cout <<
"======================================" << endl;
392 cout <<
"Maximum local slope and intersection: " << endl;
397 double d_intersection = d_slope*
z_plane[2*i];
432 iter->second->reset();
444 for(std::vector<Hit>::iterator iter =
hitAll.begin(); iter !=
hitAll.end(); ++iter) iter->print();
448 for(
int i = 0; i < 4; i++)
452 if(HIT_MASK_MODE ==
"XY")
457 else if(HIT_MASK_MODE ==
"X" ||
463 else if(HIT_MASK_MODE ==
"NONE")
473 std::ostringstream oss;
484 for(
int i = 0; i < 2; ++i)
486 for(
int j = 0; j < 4; ++j)
495 if(!COARSE_MODE && REQUIRE_MUID)
512 if (ret != 0)
return ret;
523 LogInfo(
"Failed in tracklet build at station 2");
537 LogInfo(
"Failed in tracklet build at station 3");
552 LogInfo(
"Failed in connecting station-2 and 3 tracks");
564 for(
int i = 0; i < 2; ++i)
566 std::cout <<
"=======================================================================================" << std::endl;
567 LogInfo(
"Prop tube segments in " << (i == 0 ?
"X-Z" :
"Y-Z"));
568 for(std::list<PropSegment>::iterator seg =
propSegs[i].begin(); seg !=
propSegs[i].end(); ++seg)
572 std::cout <<
"=======================================================================================" << std::endl;
575 for(
int i = 0; i <= 4; i++)
577 std::cout <<
"=======================================================================================" << std::endl;
583 std::cout <<
"=======================================================================================" << std::endl;
601 for(std::list<SRecTrack>::iterator strack =
stracks.begin(); strack !=
stracks.end(); ++strack)
651 int nHitsX2, nHitsX3;
652 double z_fit[4], x_fit[4];
661 for(std::list<SignedHit>::iterator ptr_hit = tracklet3->hits.begin(); ptr_hit != tracklet3->hits.end(); ++ptr_hit)
663 if(ptr_hit->hit.index < 0)
continue;
666 z_fit[nHitsX3] =
z_plane[ptr_hit->hit.detectorID];
667 x_fit[nHitsX3] = ptr_hit->hit.pos;
678 if(fabs(tracklet2->tx - tracklet3->tx) > 0.15 || fabs(tracklet2->ty - tracklet3->ty) > 0.1)
continue;
682 for(std::list<SignedHit>::iterator ptr_hit = tracklet2->hits.begin(); ptr_hit != tracklet2->hits.end(); ++ptr_hit)
684 if(ptr_hit->hit.index < 0)
continue;
687 z_fit[nHitsX2] =
z_plane[ptr_hit->hit.detectorID];
688 x_fit[nHitsX2] = ptr_hit->hit.pos;
694 chi2fit(nHitsX2, z_fit, x_fit, a, b);
695 if(fabs(a) > 2.*TX_MAX || fabs(b) > 2.*X0_MAX)
continue;
701 for(
int i = 0; i < 4; ++i)
706 if(fabs(
hitAll[*iter].pos - x_exp) < 5.08)
712 if(nPropHits > 0)
break;
714 if(nPropHits == 0)
continue;
718 Tracklet tracklet_23 = (*tracklet2) + (*tracklet3);
720 LogInfo(
"Using following two tracklets:");
723 LogInfo(
"Yield this combination:");
727 if(tracklet_23.
chisq > 9000.)
731 LogInfo(
"Impossible combination!");
736 if(!COARSE_MODE && !
hodoMask(tracklet_23))
739 LogInfo(
"Hodomasking failed!");
744 LogInfo(
"Hodomasking Scucess!");
761 tracklet_best.
print();
763 LogInfo(
"Comparison: " << (tracklet_23 < tracklet_best));
770 tracklet_best = tracklet_23;
787 double pos_exp[3], window[3];
791 for(
int i = 0; i < 2; ++i)
806 LogInfo(
"Using this back partial: ");
808 for(
int j = 0; j < 3; j++)
LogInfo(
"Extrapo: " << pos_exp[j] <<
" " << window[j]);
811 _timers[
"global_st1"]->restart();
815 _timers[
"global_link"]->restart();
816 Tracklet tracklet_best_prob, tracklet_best_vtx;
820 LogInfo(
"With this station 1 track:");
824 Tracklet tracklet_global = (*tracklet23) * (*tracklet1);
826 if(!
hodoMask(tracklet_global))
continue;
843 if(tracklet_global < tracklet_best_prob) tracklet_best_prob = tracklet_global;
849 _timers[
"global_kalman"]->restart();
851 _timers[
"global_kalman"]->stop();
859 tracklet_global.
print();
861 LogInfo(
"Current best by prob:");
862 tracklet_best_prob.
print();
864 LogInfo(
"Comparison I: " << (tracklet_global < tracklet_best_prob));
869 LogInfo(
"Current best by vtx:");
870 tracklet_best_vtx.
print();
877 _timers[
"global_link"]->stop();
882 tracklet_best[i] = tracklet_best_prob;
886 tracklet_best[i] = tracklet_best_vtx;
888 else if(tracklet_best_prob.
isValid() > 0)
890 tracklet_best[i] = tracklet_best_prob;
896 if(fabs(tracklet_best[0].getMomentum() - tracklet_best[1].getMomentum())/tracklet_best[0].getMomentum() < MERGE_THRES)
899 tracklet_merge = tracklet_best[0].
merge(tracklet_best[1]);
903 LogInfo(
"Merging two track candidates with momentum: " << tracklet_best[0].getMomentum() <<
" " << tracklet_best[1].getMomentum());
910 if(tracklet_merge.
isValid() > 0 && tracklet_merge < tracklet_best[0] && tracklet_merge < tracklet_best[1])
913 LogInfo(
"Choose merged tracklet");
917 else if(tracklet_best[0].isValid() > 0 && tracklet_best[0] < tracklet_best[1])
920 LogInfo(
"Choose tracklet with station-0");
924 else if(tracklet_best[1].isValid() > 0)
927 LogInfo(
"Choose tracklet with station-1");
939 LogInfo(
"Left right for this track..");
944 bool isUpdated =
false;
947 int possibility[4][2] = {{1, 1}, {1, -1}, {-1, 1}, {-1, -1}};
950 int nPairs = tracklet.
hits.size()/2;
953 std::list<SignedHit>::iterator hit1 = tracklet.
hits.begin();
954 std::list<SignedHit>::iterator hit2 = tracklet.
hits.begin();
959 LogInfo(hit1->hit.index <<
" " << hit2->sign <<
" === " << hit2->hit.index <<
" " << hit2->sign);
960 int detectorID1 = hit1->hit.detectorID;
961 int detectorID2 = hit2->hit.detectorID;
966 if(hit1->hit.index > 0 && hit2->hit.index > 0 && hit1->sign*hit2->sign == 0)
969 double pull_min = 1E6;
970 for(
int i = 0; i < 4; i++)
972 double slope_local = (hit1->pos(possibility[i][0]) - hit2->pos(possibility[i][1]))/(
z_plane[hit1->hit.detectorID] -
z_plane[hit2->hit.detectorID]);
973 double inter_local = hit1->pos(possibility[i][0]) - slope_local*
z_plane[hit1->hit.detectorID];
975 if(fabs(slope_local) >
slope_max[hit1->hit.detectorID] || fabs(inter_local) >
intersection_max[hit1->hit.detectorID])
continue;
977 double tx, ty, x0, y0;
978 double err_tx, err_ty, err_x0, err_y0;
979 if(tracklet.
stationID == 6 && hit1->hit.detectorID <= 6)
1001 double pull = sqrt((slope_exp - slope_local)*(slope_exp - slope_local)/err_slope/err_slope + (inter_exp - inter_local)*(inter_exp - inter_local)/err_inter/err_inter);
1009 LogInfo(hit1->hit.detectorID <<
": " << i <<
" " << possibility[i][0] <<
" " << possibility[i][1]);
1010 LogInfo(tx <<
" " << x0 <<
" " << ty <<
" " << y0);
1011 LogInfo(
"Slope: " << slope_local <<
" " << slope_exp <<
" " << err_slope);
1012 LogInfo(
"Intersection: " << inter_local <<
" " << inter_exp <<
" " << err_inter);
1013 LogInfo(
"Current: " << pull <<
" " << index_min <<
" " << pull_min);
1018 if(index_min >= 0 && pull_min < threshold)
1020 hit1->sign = possibility[index_min][0];
1021 hit2->sign = possibility[index_min][1];
1027 if(nResolved >= nPairs)
break;
1041 LogInfo(
"Single left right for this track..");
1046 bool isUpdated =
false;
1047 for(std::list<SignedHit>::iterator hit_sign = tracklet.
hits.begin(); hit_sign != tracklet.
hits.end(); ++hit_sign)
1049 if(hit_sign->hit.index < 0 || hit_sign->sign != 0)
continue;
1051 int detectorID = hit_sign->hit.detectorID;
1053 hit_sign->sign = pos_exp > hit_sign->hit.pos ? 1 : -1;
1064 LogInfo(
"Removing hits for this track..");
1073 bool isUpdated =
true;
1081 double res_remove1 = -1.;
1082 double res_remove2 = -1.;
1083 for(std::list<SignedHit>::iterator hit_sign = tracklet.
hits.begin(); hit_sign != tracklet.
hits.end(); ++hit_sign)
1085 if(hit_sign->hit.index < 0)
continue;
1088 double res_curr = fabs(tracklet.
residual[detectorID-1]);
1089 if(res_remove1 < res_curr)
1091 res_remove1 = res_curr;
1092 res_remove2 = fabs(tracklet.
residual[detectorID-1] - 2.*hit_sign->sign*hit_sign->hit.driftDistance);
1093 hit_remove = &(*hit_sign);
1095 std::list<SignedHit>::iterator iter = hit_sign;
1096 hit_neighbour = detectorID % 2 == 0 ? &(*(--iter)) : &(*(++iter));
1099 if(hit_remove ==
nullptr)
continue;
1100 if(hit_remove->
sign == 0 && tracklet.
isValid() > 0)
continue;
1103 if(res_remove1 > cut)
1106 LogInfo(
"Dropping this hit: " << res_remove1 <<
" " << res_remove2 <<
" " << signflipflag[hit_remove->
hit.
detectorID-1] <<
" " << cut);
1112 if(res_remove2 < cut && signflipflag[hit_remove->
hit.
detectorID-1] < 2)
1114 hit_remove->
sign = -hit_remove->
sign;
1115 hit_neighbour->
sign = 0;
1118 LogInfo(
"Only changing the sign.");
1126 hit_neighbour->
sign = 0;
1132 else if(planeType == 2)
1145 LogInfo(
"Both hits in a view are missing! Will exit the bad hit removal...");
1167 if(hpair.first < 0 || hpair.second < 0)
1172 int possibility[4][2] = {{1, 1}, {1, -1}, {-1, 1}, {-1, -1}};
1174 for(
int i = 0; i < 4; i++)
1176 if(nResolved > 1)
break;
1178 int hitID1 = hpair.first;
1179 int hitID2 = hpair.second;
1181 double intersection_local =
hitAll[hitID1].pos + possibility[i][0]*
hitAll[hitID1].driftDistance - slope_local*
z_plane[
hitAll[hitID1].detectorID];
1187 LR1 = possibility[i][0];
1188 LR2 = possibility[i][1];
1204 LogInfo(
"Building tracklets in station " << stationID);
1208 int sID = stationID - 1;
1211 std::list<SRawEvent::hit_pair> pairs_X, pairs_U, pairs_V;
1212 if(pos_exp ==
nullptr)
1227 LogInfo(
"Hit pairs in this event: ");
1228 for(std::list<SRawEvent::hit_pair>::iterator iter = pairs_X.begin(); iter != pairs_X.end(); ++iter)
LogInfo(
"X :" << iter->first <<
" " << iter->second <<
" " <<
hitAll[iter->first].index <<
" " << (iter->second < 0 ? -1 :
hitAll[iter->second].index));
1229 for(std::list<SRawEvent::hit_pair>::iterator iter = pairs_U.begin(); iter != pairs_U.end(); ++iter)
LogInfo(
"U :" << iter->first <<
" " << iter->second <<
" " <<
hitAll[iter->first].index <<
" " << (iter->second < 0 ? -1 :
hitAll[iter->second].index));
1230 for(std::list<SRawEvent::hit_pair>::iterator iter = pairs_V.begin(); iter != pairs_V.end(); ++iter)
LogInfo(
"V :" << iter->first <<
" " << iter->second <<
" " <<
hitAll[iter->first].index <<
" " << (iter->second < 0 ? -1 :
hitAll[iter->second].index));
1233 if(pairs_X.empty() || pairs_U.empty() || pairs_V.empty())
1236 LogInfo(
"Not all view has hits in station " << stationID);
1242 for(std::list<SRawEvent::hit_pair>::iterator xiter = pairs_X.begin(); xiter != pairs_X.end(); ++xiter)
1245 double x_pos = xiter->second >= 0 ? 0.5*(
hitAll[xiter->first].pos +
hitAll[xiter->second].pos) :
hitAll[xiter->first].pos;
1247 double u_max = u_min + 2.*
u_win[sID];
1249 LogInfo(
"Trying X hits " << xiter->first <<
" " << xiter->second <<
" " <<
hitAll[xiter->first].elementID <<
" at " << x_pos);
1250 LogInfo(
"U plane window:" << u_min <<
" " << u_max);
1253 for(std::list<SRawEvent::hit_pair>::iterator uiter = pairs_U.begin(); uiter != pairs_U.end(); ++uiter)
1255 double u_pos = uiter->second >= 0 ? 0.5*(
hitAll[uiter->first].pos +
hitAll[uiter->second].pos) :
hitAll[uiter->first].pos;
1257 LogInfo(
"Trying U hits " << uiter->first <<
" " << uiter->second <<
" " <<
hitAll[uiter->first].elementID <<
" at " << u_pos);
1259 if(u_pos < u_min || u_pos > u_max)
continue;
1266 double v_win2 = fabs((z_u + z_v - 2.*z_x)*
u_costheta[sID]*TX_MAX);
1267 double v_win3 = fabs((z_v - z_u)*
u_sintheta[sID]*TY_MAX);
1268 double v_win = v_win1 + v_win2 + v_win3 + 2.*
spacing_plane[
hitAll[uiter->first].detectorID];
1269 double v_min = 2*x_pos*
u_costheta[sID] - u_pos - v_win;
1270 double v_max = v_min + 2.*v_win;
1273 LogInfo(
"V plane window:" << v_min <<
" " << v_max);
1275 for(std::list<SRawEvent::hit_pair>::iterator viter = pairs_V.begin(); viter != pairs_V.end(); ++viter)
1277 double v_pos = viter->second >= 0 ? 0.5*(
hitAll[viter->first].pos +
hitAll[viter->second].pos) :
hitAll[viter->first].pos;
1279 LogInfo(
"Trying V hits " << viter->first <<
" " << viter->second <<
" " <<
hitAll[viter->first].elementID <<
" at " << v_pos);
1281 if(v_pos < v_min || v_pos > v_max)
continue;
1290 if(xiter->first >= 0)
1295 if(xiter->second >= 0)
1302 if(uiter->first >= 0)
1307 if(uiter->second >= 0)
1314 if(viter->first >= 0)
1319 if(viter->second >= 0)
1326 if(tracklet_new.
isValid() == 0)
1336 tracklet_new.
print();
1354 iter->addDummyHits();
1371 LogInfo(
"Failed in quality check!");
1376 if(COARSE_MODE)
return true;
1379 if(!
hodoMask(tracklet))
return false;
1398 if (HIT_MASK_MODE ==
"NONE")
return true;
1403 bool masked =
false;
1404 for(std::list<int>::iterator iter =
hitIDs_mask[*stationID-1].begin(); iter !=
hitIDs_mask[*stationID-1].end(); ++iter)
1406 int detectorID =
hitAll[*iter].detectorID;
1407 int elementID =
hitAll[*iter].elementID;
1410 int idx2 = elementID - 1;
1414 double z_hodo =
z_mask[idx1];
1420 double x_min =
x_mask_min[idx1][idx2] - err_x;
1421 double x_max =
x_mask_max[idx1][idx2] + err_x;
1422 double y_min =
y_mask_min[idx1][idx2] - err_y;
1423 double y_max =
y_mask_max[idx1][idx2] + err_y;
1428 LogInfo(nHodoHits <<
"/" <<
stationIDs_mask[tracklet.
stationID-1].size() <<
": " << z_hodo <<
" " << x_hodo <<
" +/- " << err_x <<
" " << y_hodo <<
" +/-" << err_y <<
" : " << x_min <<
" " << x_max <<
" " << y_min <<
" " << y_max);
1430 if(x_hodo > x_min && x_hodo < x_max && y_hodo > y_min && y_hodo < y_max)
1439 if(!masked)
return false;
1455 double cut_the = MUID_THE_P0*tracklet.
invP;
1456 double cut_emp = MUID_EMP_P0 + MUID_EMP_P1/tracklet.
invP + MUID_EMP_P2/tracklet.
invP/tracklet.
invP;
1457 cut = MUID_REJECTION*(cut_the > cut_emp ? cut_the : cut_emp);
1460 double slope[2] = {tracklet.
tx, tracklet.
ty};
1463 for(
int i = 0; i < 2; ++i)
1469 for(
int j = 0; j < 4; ++j)
1472 double pos_ref = j < 2 ? pos_absorb[i] : segs[i]->
getPosRef(pos_absorb[i] + slope[i]*(
z_ref_muid[i][j] - MUID_Z_REF));
1478 win_tight = win_tight > 2.54 ? win_tight : 2.54;
1479 double win_loose = win_tight*2;
1480 double dist_min = 1E6;
1483 double pos =
hitAll[*iter].pos;
1484 double dist = pos - pos_exp;
1485 if(dist < -win_loose)
continue;
1486 if(dist > win_loose)
break;
1488 double dist_l = fabs(pos -
hitAll[*iter].driftDistance - pos_exp);
1489 double dist_r = fabs(pos +
hitAll[*iter].driftDistance - pos_exp);
1490 dist = dist_l < dist_r ? dist_l : dist_r;
1494 if(dist < win_tight)
1497 segs[i]->
hits[j].
sign = fabs(pos -
hitAll[*iter].driftDistance - pos_exp) < fabs(pos +
hitAll[*iter].driftDistance - pos_exp) ? -1 : 1;
1509 if(segs[0]->getNHits() + segs[1]->getNHits() >= MUID_MINHITS)
1513 else if(segs[1]->getNHits() == 1 || segs[1]->getNPlanes() == 1)
1527 double cut_the = MUID_THE_P0*tracklet.
invP;
1528 double cut_emp = MUID_EMP_P0 + MUID_EMP_P1/tracklet.
invP + MUID_EMP_P2/tracklet.
invP/tracklet.
invP;
1529 cut = MUID_REJECTION*(cut_the > cut_emp ? cut_the : cut_emp);
1532 LogInfo(
"Muon ID cut is: " << cut <<
" rad.");
1535 double slope[2] = {tracklet.
tx, tracklet.
ty};
1538 for(
int i = 0; i < 2; ++i)
1541 if(i == 0)
LogInfo(
"Working in X-Z:");
1542 if(i == 1)
LogInfo(
"Working in Y-Z:");
1546 if(segs[i]->getNHits() > 2 && segs[i]->isValid() > 0 && fabs(slope[i] - segs[i]->a) < cut && fabs(segs[i]->getExpPosition(MUID_Z_REF) - pos_ref) < MUID_R_CUT)
1549 LogInfo(
"Muon ID are already avaiable!");
1554 for(std::list<PropSegment>::iterator iter =
propSegs[i].begin(); iter !=
propSegs[i].end(); ++iter)
1557 LogInfo(
"Testing this prop segment, with ref pos = " << pos_ref <<
", slope_ref = " << slope[i]);
1560 if(fabs(iter->a - slope[i]) < cut && fabs(iter->getExpPosition(MUID_Z_REF) - pos_ref) < MUID_R_CUT)
1570 if(segs[i]->isValid() == 0)
return false;
1573 if(segs[0]->getNHits() + segs[1]->getNHits() < MUID_MINHITS)
return false;
1583 double win_the = MUID_THE_P0*tracklet.
invP;
1584 double win_emp = MUID_EMP_P0 + MUID_EMP_P1/tracklet.
invP + MUID_EMP_P2/tracklet.
invP/tracklet.
invP;
1585 win = MUID_REJECTION*(win_the > win_emp ? win_the : win_emp);
1590 for(
int i = 0; i < 2; ++i)
1595 int detectorID =
hitAll[*iter].detectorID;
1596 int elementID =
hitAll[*iter].elementID;
1599 int idx2 = elementID - 1;
1601 double z_hodo =
z_mask[idx1];
1604 double err_x = factor*tracklet.
getExpPosErrorX(z_hodo) + win*(z_hodo - MUID_Z_REF);
1605 double err_y = factor*tracklet.
getExpPosErrorY(z_hodo) + win*(z_hodo - MUID_Z_REF);
1610 double x_min =
x_mask_min[idx1][idx2] - err_x;
1611 double x_max =
x_mask_max[idx1][idx2] + err_x;
1612 double y_min =
y_mask_min[idx1][idx2] - err_y;
1613 double y_max =
y_mask_max[idx1][idx2] + err_y;
1615 if(x_hodo > x_min && x_hodo < x_max && y_hodo > y_min && y_hodo < y_max)
1618 if(segs[i]->nHodoHits > 4)
break;
1629 LogInfo(
"Building prop. tube segments");
1632 for(
int i = 0; i < 2; ++i)
1641 std::cout <<
"superID: " <<
superIDs[i+5][0] <<
", " <<
superIDs[i+5][1] << std::endl;
1642 for(std::list<SRawEvent::hit_pair>::iterator iter = pairs_forward.begin(); iter != pairs_forward.end(); ++iter)
1643 LogInfo(
"Forward: " << iter->first <<
" " << iter->second <<
" " <<
hitAll[iter->first].index <<
" " << (iter->second < 0 ? -1 :
hitAll[iter->second].index));
1644 for(std::list<SRawEvent::hit_pair>::iterator iter = pairs_backward.begin(); iter != pairs_backward.end(); ++iter)
1645 LogInfo(
"Backward: " << iter->first <<
" " << iter->second <<
" " <<
hitAll[iter->first].index <<
" " << (iter->second < 0 ? -1 :
hitAll[iter->second].index));
1648 for(std::list<SRawEvent::hit_pair>::iterator fiter = pairs_forward.begin(); fiter != pairs_forward.end(); ++fiter)
1651 LogInfo(
"Trying forward pair " << fiter->first <<
" " << fiter->second);
1653 for(std::list<SRawEvent::hit_pair>::iterator biter = pairs_backward.begin(); biter != pairs_backward.end(); ++biter)
1656 LogInfo(
"Trying backward pair " << biter->first <<
" " << biter->second);
1697 std::list<Tracklet> targetList;
1700 while(!tracklets.empty())
1702 targetList.push_back(tracklets.front());
1703 tracklets.pop_front();
1706 LogInfo(
"Current best tracklet in reduce");
1707 targetList.back().print();
1710 for(std::list<Tracklet>::iterator iter = tracklets.begin(); iter != tracklets.end(); )
1712 if(iter->similarity(targetList.back()))
1715 LogInfo(
"Removing this tracklet: ");
1718 iter = tracklets.erase(iter);
1728 tracklets.assign(targetList.begin(), targetList.end());
1736 for(
int i = 0; i < 3; i++)
1744 for(
int i = 0; i < 3; i++)
1746 int detectorID = (st1ID-1)*6 + 2*i + 2;
1749 double z_st1 =
z_plane[detectorID];
1764 for(
int i = 0; i < 3; i++)
1772 double z_st3 =
z_plane[tracklet.
hits.back().hit.detectorID];
1777 for(
int i = 0; i < 3; i++)
1779 int detectorID = (st1ID-1)*6 + 2*i + 2;
1782 if(!(idx >= 0 && idx <3))
continue;
1786 double z_st1 =
z_plane[detectorID];
1792 double s2_target = pos_st2 - pos_st3*(z_st2 - Z_TARGET)/(z_st3 - Z_TARGET);
1793 double s2_dump = pos_st2 - pos_st3*(z_st2 - Z_DUMP)/(z_st3 - Z_DUMP);
1795 double pos_exp_target = SAGITTA_TARGET_CENTER*s2_target + pos_st3*(z_st1 - Z_TARGET)/(z_st3 - Z_TARGET);
1796 double pos_exp_dump = SAGITTA_DUMP_CENTER*s2_dump + pos_st3*(z_st1 - Z_DUMP)/(z_st3 - Z_DUMP);
1797 double win_target = fabs(s2_target*SAGITTA_TARGET_WIDTH);
1798 double win_dump = fabs(s2_dump*SAGITTA_DUMP_WIDTH);
1800 double p_min = std::min(pos_exp_target - win_target, pos_exp_dump - win_dump);
1801 double p_max = std::max(pos_exp_target + win_target, pos_exp_dump + win_dump);
1803 pos_exp[idx] = 0.5*(p_max + p_min);
1804 window[idx] = 0.5*(p_max - p_min);
1812 std::vector<double> x, y, dx, dy;
1816 x.push_back(iter->getExpPositionX(z));
1817 y.push_back(iter->getExpPositionY(z));
1818 dx.push_back(iter->getExpPosErrorX(z));
1819 dy.push_back(iter->getExpPosErrorY(z));
1822 TGraphErrors gr(x.size(), &x[0], &y[0], &dx[0], &dy[0]);
1823 gr.SetMarkerStyle(8);
1826 std::vector<double> x_f, y_f, dx_f, dy_f;
1840 TGraphErrors gr_frame(x_f.size(), &x_f[0], &y_f[0], &dx_f[0], &dy_f[0]);
1841 gr_frame.SetLineColor(kRed);
1842 gr_frame.SetLineWidth(2);
1843 gr_frame.SetFillColor(15);
1846 gr_frame.Draw(
"A2[]");
1849 c1.SaveAs(outputFileName.c_str());
1992 bool isUpdated =
false;
1999 double x_hit = node->getSmoothed().get_x();
2000 double y_hit = node->getSmoothed().get_y();
2004 if(pos_hit > node->getHit().pos)
2014 TMatrixD m(1, 1), dm(1, 1);
2015 m[0][0] = node->getHit().pos + sign*node->getHit().driftDistance;
2017 node->setMeasurement(m, dm);
2018 *hitID = sign*node->getHit().index;
2031 std::cout <<
"KalmanFastTracking::printTimers: " << std::endl;
2032 std::cout <<
"================================================================" << std::endl;
2033 std::cout <<
"Tracklet St2 "<<
_timers[
"st2"]->get_accumulated_time()/1000. <<
" sec" <<std::endl;
2034 std::cout <<
"Tracklet St3 "<<
_timers[
"st3"]->get_accumulated_time()/1000. <<
" sec" <<std::endl;
2035 std::cout <<
"Tracklet St23 "<<
_timers[
"st23"]->get_accumulated_time()/1000. <<
" sec" <<std::endl;
2036 std::cout <<
"Tracklet Global "<<
_timers[
"global"]->get_accumulated_time()/1000. <<
" sec" <<std::endl;
2037 std::cout <<
" Global St1 "<<
_timers[
"global_st1"]->get_accumulated_time()/1000. <<
" sec" <<std::endl;
2038 std::cout <<
" Global Link "<<
_timers[
"global_link"]->get_accumulated_time()/1000. <<
" sec" <<std::endl;
2039 std::cout <<
" Global Kalman "<<
_timers[
"global_kalman"]->get_accumulated_time()/1000. <<
" sec" <<std::endl;
2040 std::cout <<
"Tracklet Kalman "<<
_timers[
"kalman"]->get_accumulated_time()/1000. <<
" sec" <<std::endl;
2041 std::cout <<
"================================================================" << std::endl;
2053 for(
int i = 0; i < n; ++i)
2063 double det = sum*sxx - sx*sx;
2064 if(fabs(det) < 1E-20)
2072 a = (sum*sxy - sx*sy)/det;
2073 b = (sy*sxx - sxy*sx)/det;
#define TFEXIT_FAIL_BACKPARTIAL
#define TFEXIT_FAIL_ST3_TRACKLET
#define TFEXIT_FAIL_MULTIPLICITY
#define TFEXIT_FAIL_ST2_TRACKLET
#define TFEXIT_FAIL_GLOABL
@ VERBOSITY_A_LOT
Output a lot of messages.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
double getPlanePosition(int detectorID) const
void printAlignPar()
Debugging print of the content.
static GeomSvc * instance()
singlton instance
double getPlaneCenterY(int detectorID) const
double getPlaneCenterX(int detectorID) const
bool isInKMAG(double x, double y)
int getPlaneType(int detectorID) const
double getPlaneResolution(int detectorID) const
int getPlaneNElements(int detectorID) const
double getPlaneScaleY(int detectorID) const
double getPlaneScaleX(int detectorID) const
double getCostheta(int detectorID) const
double getPlaneSpacing(int detectorID) const
double getUinStereoPlane(int detectorID, double x, double y)
bool isInPlane(int detectorID, double x, double y)
See if a point is in a plane.
void get2DBoxSize(int detectorID, int elementID, double &x_min, double &x_max, double &y_min, double &y_max)
double getSintheta(int detectorID) const
std::vector< int > getDetectorIDs(std::string pattern)
void print(std::ostream &os=std::cout) const
bool acceptEvent(SRawEvent *rawEvent)
std::list< Tracklet > trackletsInSt[5]
void setRawEventDebug(SRawEvent *event_input)
std::vector< int > detectorIDs_maskY[4]
double costheta_plane[nChamberPlanes+1]
unsigned int outputListIdx
double u_sintheta[nChamberPlanes/6]
double u_costheta[nChamberPlanes/6]
double z_mask[nHodoPlanes+nPropPlanes]
std::list< SRecTrack > stracks
void removeBadHits(Tracklet &tracklet)
std::vector< int > stationIDs_mask[nStations]
bool hodoMask(Tracklet &tracklet)
std::vector< int > superIDs[nChamberPlanes/6+2]
For following part, id = 0, 1, 2, 3, 4, 5, 6 stand for station 0, 1, 2, 3+, 3-, and prop tubes X-Z an...
double z_plane[nChamberPlanes+1]
int setRawEventPrep(SRawEvent *event_input)
void getExtrapoWindowsInSt1(Tracklet &tracklet, double *pos_exp, double *window, int st1ID)
void resolveLeftRight(SRawEvent::hit_pair hpair, int &LR1, int &LR2)
virtual ~KalmanFastTracking()
bool acceptTracklet(Tracklet &tracklet)
double intersection_max[nChamberPlanes+1]
void chi2fit(int n, double x[], double y[], double &a, double &b)
Tool, a simple-minded chi square fit.
virtual void buildTrackletsInStation(int stationID, int listID, double *pos_exp=nullptr, double *window=nullptr)
Tracklet finding stuff.
int fitTracklet(Tracklet &tracklet)
virtual void buildGlobalTracks()
virtual void buildBackPartialTracks()
KalmanFastTracking(const PHField *field, const TGeoManager *geom, bool flag=true, const int verb=0)
double slope_max[nChamberPlanes+1]
int reduceTrackletList(std::list< Tracklet > &tracklets)
int detectorIDs_muid[2][4]
bool muonID_comp(Tracklet &tracklet)
double spacing_plane[nChamberPlanes+1]
void getSagittaWindowsInSt1(Tracklet &tracklet, double *pos_exp, double *window, int st1ID)
std::vector< int > detectorIDs_mask[4]
Configurations of tracklet finding.
double resol_plane[nChamberPlanes+1]
std::vector< int > detectorIDs_muidHodoAid[2]
std::list< int > hitIDs_mask[4]
std::vector< Hit > hitAll
double z_plane_x[nChamberPlanes/6]
bool muonID_hodoAid(Tracklet &tracklet)
double z_plane_u[nChamberPlanes/6]
SRecTrack processOneTracklet(Tracklet &tracklet)
Track fitting stuff.
void resolveSingleLeftRight(Tracklet &tracklet)
std::vector< int > detectorIDs_maskX[4]
std::map< std::string, PHTimer * > _timers
double y_mask_max[nHodoPlanes+nPropPlanes][72]
double x_mask_min[nHodoPlanes+nPropPlanes][72]
void printAtDetectorBack(int stationID, std::string outputFileName)
virtual int setRawEvent(SRawEvent *event_input)
bool fitTrack(KalmanTrack &kmtrk)
double x_mask_max[nHodoPlanes+nPropPlanes][72]
double u_win[nChamberPlanes/6]
bool muonID_search(Tracklet &tracklet)
std::list< PropSegment > propSegs[2]
std::list< int > hitIDs_muidHodoAid[2]
double y_mask_min[nHodoPlanes+nPropPlanes][72]
std::list< int > hitIDs_muid[2][4]
double sintheta_plane[nChamberPlanes+1]
SQTrackletFitter * trackletFitter
double z_plane_v[nChamberPlanes/6]
int processOneTrack(KalmanTrack &_track)
void updateTrack(KalmanTrack &_track)
void setControlParameter(int nMaxIteration, double tolerance)
Set the convergence control parameters.
SRecTrack getSRecTrack()
Output to SRecTrack.
std::list< Node > & getNodeList()
void setTracklet(Tracklet &tracklet, bool wildseedcov=true)
bool isValid()
Self check to see if it is null.
std::list< int > & getHitIndexList()
Get the list of hits associated.
transient DST object for field storage and access
virtual double get_DoubleFlag(const std::string &name) const
virtual int get_IntFlag(const std::string &name) const
virtual const std::string get_CharFlag(const std::string &flag) const
virtual bool get_BoolFlag(const std::string &name) const
void print(std::ostream &os=std::cout) const
int isValid() const
isValid returns non zero if object contains vailid data
double getPosRef(double default_val=-9999.)
int fit(Tracklet &tracklet)
core function - fit the tracklet and return the fit status
std::pair< Int_t, Int_t > hit_pair
Type of pair with two adjacent wires.
std::list< Int_t > getHitsIndexInDetectors(std::vector< Int_t > &detectorIDs)
std::list< SRawEvent::hit_pair > getPartialHitPairsInSuperDetector(Short_t detectorID)
std::vector< Hit > & getAllHits()
std::list< Int_t > getHitsIndexInDetector(Short_t detectorID)
Gets.
Int_t getNHitsInDetectors(std::vector< Int_t > &detectorIDs)
void setNHitsInPT(Int_t nHitsX, Int_t nHitsY)
int isValid() const
isValid returns non zero if object contains vailid data
void setPTSlope(Double_t slopeX, Double_t slopeY)
Prop. tube muon ID info.
void setTriggerRoad(Int_t roadID)
Trigger road info.
void setKalmanStatus(Int_t status)
Double_t getChisqVertex()
double getExpPositionY(double z) const
std::list< SignedHit > hits
int isValid() const
isValid returns non zero if object contains vailid data
double getExpPosErrorY(double z) const
void getXZErrorInSt1(double &err_tx_st1, double &err_x0_st1) const
double getExpPosErrorX(double z) const
double residual[nChamberPlanes]
double getExpPositionX(double z) const
SRecTrack getSRecTrack(bool hyptest=true)
void print(std::ostream &os=std::cout)
Tracklet merge(Tracklet &elem)
void getXZInfoInSt1(double &tx_st1, double &x0_st1) const
static recoConsts * instance()