8#include <tracking/trackFindingCDC/findlets/minimal/AxialTrackCreatorMCTruth.h>
10#include <tracking/trackFindingCDC/mclookup/CDCMCManager.h>
11#include <tracking/trackFindingCDC/mclookup/CDCMCTrackStore.h>
12#include <tracking/trackFindingCDC/mclookup/CDCSimHitLookUp.h>
13#include <tracking/trackFindingCDC/mclookup/CDCMCTrackLookUp.h>
15#include <tracking/trackFindingCDC/processing/AxialTrackUtil.h>
16#include <tracking/trackFindingCDC/fitting/CDCKarimakiFitter.h>
18#include <tracking/trackingUtilities/eventdata/tracks/CDCTrack.h>
19#include <tracking/trackingUtilities/eventdata/hits/CDCRecoHit3D.h>
20#include <tracking/trackingUtilities/eventdata/hits/CDCRecoHit2D.h>
21#include <tracking/trackingUtilities/eventdata/hits/CDCWireHit.h>
22#include <tracking/trackingUtilities/eventdata/trajectories/CDCTrajectorySZ.h>
23#include <tracking/trackingUtilities/eventdata/trajectories/CDCTrajectory2D.h>
25#include <tracking/trackFindingCDC/eventdata/utils/FlightTimeEstimator.h>
27#include <cdc/topology/CDCWire.h>
29#include <tracking/trackingUtilities/utilities/StringManipulation.h>
31#include <cdc/translators/RealisticTDCCountTranslator.h>
32#include <cdc/dataobjects/CDCHit.h>
34#include <framework/core/ModuleParamList.templateDetails.h>
36#include <Math/Vector2D.h>
37#include <Math/VectorUtil.h>
42using namespace TrackFindingCDC;
43using namespace TrackingUtilities;
47 moduleParamList->
addParameter(prefixed(prefix,
"reconstructedDriftLength"),
49 "Switch to assign the reconstructed drift length to each hit, "
50 "as it can be estimated from two dimensional information only.",
53 moduleParamList->
addParameter(prefixed(prefix,
"reconstructedPositions"),
55 "Switch to reconstruct the positions in the tracks "
56 "imitating the Legendre finder.",
61 "Fit the track instead of forwarding the mc truth fit information",
64 moduleParamList->
addParameter(prefixed(prefix,
"useOnlyBeforeTOP"),
66 "Cut tracks after the last layer of the CDC has been reached, "
67 "assuming the tracks left the CDC.",
73 return "Constructs tracks from wire hits using the MC truth information.";
91 std::vector<CDCTrack>& outputAxialTracks)
98 const std::map<ITrackType, CDCHitVector>& mcTracksByMCParticleIdx =
101 std::size_t nAxialTracks = mcTracksByMCParticleIdx.size();
102 outputAxialTracks.reserve(outputAxialTracks.size() + nAxialTracks);
104 for (
const std::pair<ITrackType, CDCHitVector> mcTracksAndMCParticleIdx : mcTracksByMCParticleIdx) {
106 const CDCHitVector& mcTrack = mcTracksAndMCParticleIdx.second;
108 outputAxialTracks.push_back(
CDCTrack());
109 CDCTrack& axialTrack = outputAxialTracks.back();
110 bool reachedOuterMostLayer =
false;
111 for (
const CDCHit* ptrHit : mcTrack) {
117 if (ptrHit->getISuperLayer() == 8 and ptrHit->getILayer() == 5) {
118 reachedOuterMostLayer =
true;
120 if (reachedOuterMostLayer and ptrHit->getILayer() != 5) {
126 if (not wireHit)
continue;
129 if (not recoHit2D.
isAxial())
continue;
133 axialTrack.push_back(recoHit3D);
137 if (axialTrack.size() < 5) outputAxialTracks.pop_back();
141 for (
CDCTrack& track : outputAxialTracks) {
143 ROOT::Math::XYVector recoPos2D = recoHit3D.getRecoPos2D();
144 ROOT::Math::XYVector flightDirection = recoHit3D.getFlightDirection2D();
145 double alpha = ROOT::Math::VectorUtil::DeltaPhi(recoPos2D, flightDirection);
147 const CDCWire& wire = recoHit3D.getWire();
148 const bool rl = recoHit3D.getRLInfo() == ERightLeft::c_Right;
150 double driftLength = std::fabs(recoHit3D.getSignedRecoDriftLength());
154 const double beta = 1;
173 driftLength = recoHit3D.getWireHit().getRefDriftLength();
183 driftLength += gRandom->Gaus(0, std::sqrt(driftLengthVariance));
185 bool snapRecoPos =
true;
186 recoHit3D.setRecoDriftLength(driftLength, snapRecoPos);
192 for (
CDCTrack& track : outputAxialTracks) {
199 for (
CDCTrack& track : outputAxialTracks) {
207 for (
CDCTrack& track : outputAxialTracks) {
Class containing the result of the unpacker in raw data and the result of the digitizer in simulation...
Class representing a sense wire in the central drift chamber.
const WireID & getWireID() const
Getter for the wire id.
double getRefZ() const
Getter for the wire reference z coordinate Gives the wire's reference z coordinate.
Translator mirroring the realistic Digitization.
double getDriftLengthResolution(double driftLength, const WireID &wireID=WireID(), bool leftRight=false, double z=0, double alpha=0, double=static_cast< double >(TMath::Pi()/2.)) override
Get position resolution^2 corresponding to the drift length from getDriftLength of this class.
The Module parameter list class.
void initialize() final
Initialize the Module before event processing.
bool m_param_reconstructedDriftLength
Parameter : Setup the drift length as it can be estimated from two dimensional information.
void beginEvent() final
Start processing the current event.
void apply(const std::vector< TrackingUtilities::CDCWireHit > &inputWireHits, std::vector< TrackingUtilities::CDCTrack > &outputAxialTracks) final
Main function of the track finding by the cellular automaton.
std::string getDescription() final
Short description of the findlet.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
bool m_param_reconstructedPositions
Parameter : Switch to reconstruct the positions in the tracks imitating the Legendre finder.
bool m_param_fit
Parameter : Fit the track instead of forwarding the MC truth information.
bool m_param_useOnlyBeforeTOP
Parameter : Cut tracks after the last layer of the CDC has been reached, assuming the tracks left the...
Class implementing the fitter using Karimakis method.
TrackingUtilities::CDCTrajectory3D getTrajectory3D(const ACDCHitCollection *ptrHits) const
Returns the trajectory of the collection of hits.
static void requireTruthInformation()
Require the MC information store arrays.
void fill()
Fill Monte Carlo look up maps from the DataStore.
static CDCMCManager & getInstance()
Getter for the singleton instance.
Specialisation of the lookup for the truth values of reconstructed tracks.
static const CDCMCTrackLookUp & getInstance()
Getter for the singletone instance.
Class to organize and present the monte carlo hit information.
static const CDCMCTrackStore & getInstance()
Getter for the singletone instance.
std::vector< const CDCHit * > CDCHitVector
Type for an ordered sequence of pointers to the CDCHit.
const std::map< ITrackType, Belle2::TrackFindingCDC::CDCMCTrackStore::CDCHitVector > & getMCTracksByMCParticleIdx() const
Getter for the stored Monte Carlo tracks ordered by their Monte Carlo Id.
Singletone class to gather local information about the hits.
static const CDCSimHitLookUp & getInstance()
Getter for the singletone instance.
static const TrackingUtilities::CDCWireHit * getWireHit(const CDCHit *ptrHit, const std::vector< TrackingUtilities::CDCWireHit > &wireHits)
Retrieve the wire hit the given CDCHit form the given wire hits.
TrackingUtilities::CDCRecoHit2D getClosestPrimaryRecoHit2D(const CDCHit *ptrHit, const std::vector< TrackingUtilities::CDCWireHit > &wireHits) const
Construct an TrackingUtilities::CDCRecoHit2D from the closest primary CDCSimHit information related t...
static const FlightTimeEstimator & instance(std::unique_ptr< FlightTimeEstimator > replacement=nullptr)
Getter for the instance.
virtual double getFlightTime2D(const ROOT::Math::XYVector &, double, double=1) const
Default estimator for the flight time.
Class representing a two dimensional reconstructed hit in the central drift chamber.
const CDCRLWireHit & getRLWireHit() const
Getter for the oriented wire hit associated with the reconstructed hit.
bool isAxial() const
Indicator if the underlying wire is axial.
ROOT::Math::XYVector getRecoPos2D() const
Getter for the position in the reference plane.
Class representing a three dimensional reconstructed hit.
Class representing a sequence of three dimensional reconstructed hits.
Particle trajectory as it is seen in xy projection represented as a circle.
double setLocalOrigin(const ROOT::Math::XYVector &localOrigin)
Setter for the origin of the local coordinate system.
Particle full three dimensional trajectory.
CDCTrajectory2D getTrajectory2D() const
Getter for the two dimensional trajectory.
static CDCTrajectorySZ basicAssumption()
Constructs a basic assumption, what the z0 start position and the sz slope are, including some broad ...
Class representing a hit wire in the central drift chamber.
void initialize() override
void beginEvent() override
void addParameter(const std::string &name, T ¶mVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module list.
Abstract base class for different kinds of events.
static void normalizeTrack(TrackingUtilities::CDCTrack &track)
Refit and resort the track. Unmask all hits.