8#include <tracking/ckf/cdc/filters/paths/CDCPathBasicVarSet.h>
10#include <tracking/ckf/cdc/entities/CDCCKFState.h>
12#include <tracking/dataobjects/RecoTrack.h>
14#include <tracking/trackFindingCDC/topology/CDCWire.h>
15#include <tracking/trackFindingCDC/topology/CDCWireTopology.h>
22 const auto& seed = path->front();
23 const auto* seedRecoTrack = seed.getSeed();
25 double arcLength_total = 0.;
26 std::vector<double> arcLengths;
27 arcLengths.reserve(path->size() - 1);
28 std::vector<double> hitDistances;
29 hitDistances.reserve(path->size() - 1);
30 std::vector<double> flipPos(8, 0);
32 unsigned int chargeFlip = 0;
33 int lastCharge = seedRecoTrack->getChargeSeed();
35 for (
auto const& state : *path) {
40 arcLengths.push_back(state.getArcLength() - arcLength_total);
41 arcLength_total = state.getArcLength();
43 hitDistances.push_back(state.getHitDistance());
47 genfit::MeasuredStateOnPlane trackState = state.getTrackState();
48 int stateCharge = trackState.getCharge();
49 if (lastCharge != stateCharge) {
50 if (chargeFlip < flipPos.size()) {
51 flipPos[chargeFlip] = state.getWireHit()->getWire().getICLayer();
55 lastCharge = stateCharge;
63 var<
named(
"totalHits")>() = path->size() - 1;
64 var<
named(
"chargeFlip")>() = chargeFlip;
66 bool reachedEnd =
false;
67 if (path->size() > 1) {
68 if (path->back().getWireHit()->getWire().getICLayer() == 0) {
72 var<
named(
"reachedEnd")>() = reachedEnd;
74 var<
named(
"flipPos0")>() = flipPos[0];
75 var<
named(
"flipPos1")>() = flipPos[1];
76 var<
named(
"flipPos2")>() = flipPos[2];
77 var<
named(
"flipPos3")>() = flipPos[3];
80 ROOT::Math::XYZVector seedPos = seedRecoTrack->getPositionSeed();
81 ROOT::Math::XYZVector seedMom = seedRecoTrack->getMomentumSeed();
82 var<
named(
"seed_r")>() = seedPos.Rho();
83 var<
named(
"seed_z")>() = seedPos.Z();
84 var<
named(
"seed_x")>() = seedPos.X();
85 var<
named(
"seed_y")>() = seedPos.Y();
86 var<
named(
"seed_p")>() = seedMom.R();
87 var<
named(
"seed_theta")>() = seedMom.Theta() * 180. / M_PI;
88 var<
named(
"seed_pt")>() = seedMom.Rho();
89 var<
named(
"seed_pz")>() = seedMom.Z();
90 var<
named(
"seed_px")>() = seedMom.X();
91 var<
named(
"seed_py")>() = seedMom.Y();
92 var<
named(
"seed_charge")>() = seedRecoTrack->getChargeSeed();
94 var<
named(
"totalHitsSeedTrack")>() = seedRecoTrack->getNumberOfCDCHits();
98 const auto& wires = wireTopology.getWires();
99 const float maxForwardZ = wires.back().getForwardZ();
100 const float maxBackwardZ = wires.back().getBackwardZ();
102 int seedICLayer = -1;
103 const float seedPosZ = seedPos.z();
104 if (seedPosZ < maxForwardZ && seedPosZ > maxBackwardZ) {
108 ROOT::Math::XYZVector seedMomZOne(seedMom * (1. / seedMom.Z()));
111 float minDist = 99999;
112 for (
const auto& wire : wires) {
113 const float maxZ = seedPosZ > 0 ? wire.getForwardZ() : wire.getBackwardZ();
116 if (distance < minDist) {
118 seedICLayer = wire.getICLayer();
122 var<
named(
"seedICLayer")>() = seedICLayer;
126 ROOT::Math::XYZVector trackMom(0, 0, 0);
130 float firstICLayer = 0;
131 float lastICLayer = 0;
132 if (path->size() > 1) {
133 genfit::MeasuredStateOnPlane trackState = path->back().getTrackState();
135 trackMom = trackState.getMom();
136 trackCharge = trackState.getCharge();
138 firstChi2 = path->at(1).getChi2();
139 lastChi2 = path->back().getChi2();
141 firstICLayer = path->at(1).getWireHit()->getWire().getICLayer();
142 lastICLayer = path->back().getWireHit()->getWire().getICLayer();
144 var<
named(
"track_theta")>() = trackMom.Theta() * 180. / M_PI;
145 var<
named(
"track_p")>() = trackMom.R();
146 var<
named(
"track_pt")>() = trackMom.Rho();
147 var<
named(
"track_pz")>() = trackMom.Z();
148 var<
named(
"track_px")>() = trackMom.X();
149 var<
named(
"track_py")>() = trackMom.Y();
150 var<
named(
"track_charge")>() = trackCharge;
152 var<
named(
"firstChi2")>() = firstChi2;
153 var<
named(
"lastChi2")>() = lastChi2;
155 var<
named(
"firstICLayer")>() = firstICLayer;
156 var<
named(
"lastICLayer")>() = lastICLayer;
158 if (path->size() > 3) {
159 int lastN = path->size() - 1;
160 var<
named(
"ICLayerLast0")>() = path->at(lastN).getWireHit()->getWire().getICLayer();
161 var<
named(
"ICLayerLast1")>() = path->at(lastN - 1).getWireHit()->getWire().getICLayer();
162 var<
named(
"ICLayerLast2")>() = path->at(lastN - 2).getWireHit()->getWire().getICLayer();
163 var<
named(
"IWireLast0")>() = path->at(lastN).getWireHit()->getWire().getIWire();
164 var<
named(
"IWireLast1")>() = path->at(lastN - 1).getWireHit()->getWire().getIWire();
165 var<
named(
"IWireLast2")>() = path->at(lastN - 2).getWireHit()->getWire().getIWire();
175 if (path->size() > 10) {
176 var<
named(
"hitDistance0")>() = hitDistances[0];
177 var<
named(
"hitDistance1")>() = hitDistances[1];
178 var<
named(
"hitDistance2")>() = hitDistances[2];
179 var<
named(
"hitDistance3")>() = hitDistances[3];
180 var<
named(
"hitDistance4")>() = hitDistances[4];
181 var<
named(
"hitDistance5")>() = hitDistances[5];
182 var<
named(
"hitDistance6")>() = hitDistances[6];
183 var<
named(
"hitDistance7")>() = hitDistances[7];
184 var<
named(
"hitDistance8")>() = hitDistances[8];
185 var<
named(
"hitDistance9")>() = hitDistances[9];
186 var<
named(
"arcLength0")>() = arcLengths[0];
187 var<
named(
"arcLength1")>() = arcLengths[1];
188 var<
named(
"arcLength2")>() = arcLengths[2];
189 var<
named(
"arcLength3")>() = arcLengths[3];
190 var<
named(
"arcLength4")>() = arcLengths[4];
191 var<
named(
"arcLength5")>() = arcLengths[5];
192 var<
named(
"arcLength6")>() = arcLengths[6];
193 var<
named(
"arcLength7")>() = arcLengths[7];
194 var<
named(
"arcLength8")>() = arcLengths[8];
195 var<
named(
"arcLength9")>() = arcLengths[9];
StoreObjPtr< EventMetaData > m_eventMetaData
use this to get the eventNumber
virtual bool extract(const BaseCDCPathFilter::Object *path) override
Generate and assign the variables from the object.
static CDCWireTopology & getInstance()
Getter for the singleton instance of the wire topology.
AObject Object
Type of the object to be analysed.
static constexpr int named(const char *name)
Getter for the index from the name.
Float_t & var()
Reference getter for the value of the ith variable. Static version.
A three dimensional vector.
Abstract base class for different kinds of events.