63 std::cout <<
"tpc id" << tpcid1 << std::endl;
70 const float eta1 = tpcseed1->get_eta();
72 for (
auto trackiter2 = trackiter; trackiter2 !=
m_seedMap->
end(); ++trackiter2)
74 if (trackiter == trackiter2)
continue;
86 std::cout <<
"tpc 2 " << tpcid2 << std::endl;
92 const float eta2 = tpcseed2->get_eta();
95 float dphi = phi1 - phi2;
100 else if (dphi < -1 * M_PI)
105 dphi = fabs(dphi) - M_PI;
108 const float deta = eta1 + eta2;
111 std::cout <<
"phi 1 and phi2 " << phi1 <<
" , " << phi2 << std::endl;
112 std::cout <<
"eta 1 and eta2 " << eta1 <<
" , " << eta2 << std::endl;
113 std::cout <<
"dphi and deta " << dphi <<
" , " << deta << std::endl;
140 tpcseed1->identify();
143 silseed1->identify();
167 m_tpcSeeds = findNode::getClass<TrackSeedContainer>(topNode,
"TpcTrackSeedContainer");
170 std::cout <<
PHWHERE <<
"TpcTrackSeedContainer not on node tree. Bailing"
175 m_siliconSeeds = findNode::getClass<TrackSeedContainer>(topNode,
"SiliconTrackSeedContainer");
178 std::cout <<
PHWHERE <<
"SiliconTrackSeedContainer not on node tree. Bailing"
183 m_clusterContainer = findNode::getClass<TrkrClusterContainer>(topNode,
"TRKR_CLUSTER");
187 <<
"No trkr cluster container, exiting." << std::endl;
191 m_tGeometry = findNode::getClass<ActsGeometry>(topNode,
"ActsGeometry");
194 std::cout <<
"ActsGeometry not on node tree. Exiting."
200 m_seedMap = findNode::getClass<TrackSeedContainer>(topNode,
"SvtxTrackSeedContainer");
203 std::cout <<
"No Svtx seed map on node tree. Exiting."