Skip to content
Snippets Groups Projects
Commit 501c1868 authored by Markus Frank's avatar Markus Frank Committed by MarkusFrankATcernch
Browse files

Adape documentation for Tube(...) constructor to reality. (Issue...

Adape documentation for Tube(...) constructor to reality. (Issue https://github.com/AIDASoft/DD4hep/issues/1236)
parent abab2099
No related branches found
No related tags found
No related merge requests found
......@@ -830,15 +830,15 @@ std::vector<double> zPlaneRmax() const;
\item \texttt{TubeSegment} shape represented by the \tgeo{TGeoTubeSeg}{\texttt TGeoTubeSeg} class. To create a new tube segment object call one of the following constructors:
\begin{minted}[frame=single,framesep=3pt,breaklines=true,tabsize=2,linenos,fontsize=\small]{c++}
Tube(double rmin, double rmax, double z, double deltaPhi=2*M_PI)
Tube(double rmin, double rmax, double z, double startPhi, double deltaPhi)
Tube(double rmin, double rmax, double z, double endPhi=2*M_PI)
Tube(double rmin, double rmax, double z, double startPhi, double endPhi)
template<typename RMIN, typename RMAX, typename Z, typename DELTAPHI>
Tube(const RMIN& rmin, const RMAX& rmax, const Z& z, const DELTAPHI& deltaPhi)
template<typename RMIN, typename RMAX, typename Z, typename ENDPHI>
Tube(const RMIN& rmin, const RMAX& rmax, const Z& z, const ENDPHI& endPhi)
template<typename RMIN, typename RMAX, typename Z, typename STARTPHI, typename DELTAPHI>
template<typename RMIN, typename RMAX, typename Z, typename STARTPHI, typename ENDPHI>
Tube(const std::string& name, const RMIN& rmin, const RMAX& rmax, const Z& z,
const STARTPHI& startPhi, const DELTAPHI& deltaPhi)
const STARTPHI& startPhi, const ENDPHI& endPhi)
/// Accessor: start-phi value
double startPhi() const;
......
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