1#ifndef TRACKING_RECO_VERTEXER_H_
2#define TRACKING_RECO_VERTEXER_H_
5#include "Framework/Configure/Parameters.h"
9#include "Tracking/Event/Track.h"
10#include "Tracking/Sim/BFieldXYZUtils.h"
11#include "Tracking/Sim/TrackingUtils.h"
17#include "Acts/Definitions/Common.hpp"
18#include "Acts/Definitions/Units.hpp"
22#include "Acts/Vertexing/FullBilloirVertexFitter.hpp"
23#include "Acts/Vertexing/HelicalTrackLinearizer.hpp"
24#include "Acts/Vertexing/Vertex.hpp"
28#include "Acts/MagneticField/ConstantBField.hpp"
29#include "Acts/MagneticField/MagneticFieldContext.hpp"
30#include "Acts/MagneticField/MagneticFieldProvider.hpp"
34#include "Acts/Propagator/EigenStepper.hpp"
35#include "Acts/Propagator/Propagator.hpp"
40#include "Acts/Surfaces/PerigeeSurface.hpp"
43using VoidPropagator = Acts::Propagator<Acts::EigenStepper<>>;
61 void TaggerRecoilMonitoring(
const std::vector<ldmx::Track>& tagger_tracks,
62 const std::vector<ldmx::Track>& recoil_tracks);
65 Acts::GeometryContext gctx_;
66 Acts::MagneticFieldContext bctx_;
70 int nreconstructable_{0};
71 std::shared_ptr<InterpolatedMagneticField3> sp_interpolated_bField_;
72 std::shared_ptr<Acts::ConstantBField> bField_;
77 std::string trk_c_name_1{
"TaggerTracks"};
78 std::string trk_c_name_2{
"RecoilTracks"};
79 std::shared_ptr<VoidPropagator> propagator_;
89 TH2F* h_delta_d0_vs_recoil_p;
90 TH2F* h_delta_z0_vs_recoil_p;
Base classes for all user event processing components to extend.
Implements an event buffer system for storing event data.
Class which represents the process under execution.
Base class for a module which produces a data product.
Class encapsulating parameters for configuring a processor.
void produce(framework::Event &event) override
Process the event and put new data products into it.
void onProcessEnd() override
Callback for the EventProcessor to take any necessary action when the processing of events finishes,...
void onProcessStart() override
Callback for the EventProcessor to take any necessary action when the processing of events starts,...
std::string field_map_
Path to the magnetic field map.
void configure(framework::config::Parameters ¶meters) override
Callback for the EventProcessor to configure itself from the given set of parameters.
The measurement calibrator can be a function or a class/struct able to retrieve the sim hits containe...