1 #ifndef VertexFinderOptions_h
2 #define VertexFinderOptions_h
7 namespace star_vertex {
11 enum class VertexFit_t : int
13 Unspecified, NoBeamline, BeamlineNoFit, Beamline1D, Beamline3D
17 enum class SeedFinder_t : int
19 Unspecified, MinuitVF, PPVLikelihood, TSpectrum
23 bool requiresBeamline(VertexFit_t& vertex_fit);
26 std::istream& operator>>(std::istream &in, VertexFit_t &vertex_fit);
27 std::istream& operator>>(std::istream &in, SeedFinder_t &seed_finder);
29 std::ostream& operator<<(std::ostream &out,
const VertexFit_t &vertex_fit);
30 std::ostream& operator<<(std::ostream &out,
const SeedFinder_t &seed_finder);