Skip to content
Snippets Groups Projects
Commit d26426df authored by FU Chengdong's avatar FU Chengdong
Browse files

retrieve miss optional parameters

parent 8472f656
No related branches found
No related tags found
No related merge requests found
...@@ -78,6 +78,11 @@ class SpacePointBuilderAlg : public GaudiAlgorithm { ...@@ -78,6 +78,11 @@ class SpacePointBuilderAlg : public GaudiAlgorithm {
// Output collection // Output collection
DataHandle<edm4hep::TrackerHitCollection> _outSPColHdl{"FTDSpacePoints", Gaudi::DataHandle::Writer, this}; DataHandle<edm4hep::TrackerHitCollection> _outSPColHdl{"FTDSpacePoints", Gaudi::DataHandle::Writer, this};
DataHandle<edm4hep::MCRecoTrackerAssociationCollection> _outSPAssColHdl{"FTDSpacePointsAssociation", Gaudi::DataHandle::Writer, this}; DataHandle<edm4hep::MCRecoTrackerAssociationCollection> _outSPAssColHdl{"FTDSpacePointsAssociation", Gaudi::DataHandle::Writer, this};
Gaudi::Property<float> _nominal_vertex_x{this, "NominalVertexX", 0.0};
Gaudi::Property<float> _nominal_vertex_y{this, "NominalVertexY", 0.0};
Gaudi::Property<float> _nominal_vertex_z{this, "NominalVertexZ", 0.0};
Gaudi::Property<float> _striplength_tolerance{this, "StriplengthTolerance", 0.1};
/** Calculates the 2 dimensional crossing point of two lines. /** Calculates the 2 dimensional crossing point of two lines.
* Each line is specified by a point (x,y) and a direction vector (ex,ey). * Each line is specified by a point (x,y) and a direction vector (ex,ey).
* *
...@@ -169,14 +174,7 @@ class SpacePointBuilderAlg : public GaudiAlgorithm { ...@@ -169,14 +174,7 @@ class SpacePointBuilderAlg : public GaudiAlgorithm {
unsigned _nStripsTooParallel; unsigned _nStripsTooParallel;
unsigned _nPlanesNotParallel; unsigned _nPlanesNotParallel;
float _nominal_vertex_x;
float _nominal_vertex_y;
float _nominal_vertex_z;
CLHEP::Hep3Vector _nominal_vertex; CLHEP::Hep3Vector _nominal_vertex;
float _striplength_tolerance;
} ; } ;
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment