Skip to content
Snippets Groups Projects

Draft: Resolve "Add Roman Pots Reconstruction Matrix"

Open Alex Jentsch requested to merge 70-add-roman-pots-reconstruction-matrix into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -95,7 +95,7 @@ auto local_position = [](const std::vector<dd4pod::TrackerHitData>& hits) {
//auto pos1 = cellid_converter.position(h.cellID);
//result.push_back({pos0.x / 10.0 - pos1.x(), pos0.y / 10.0 - pos1.y()});
if(pos0.z() < 26500){result.push_back({pos0.x, pos0.y});} //roughly isolate to first layer
if(pos0.z < 26500){result.push_back({pos0.x, pos0.y});} //roughly isolate to first layer
}
return result;
};
Loading