diff --git a/doc/usermanuals/DD4hep/chapters/basics.tex b/doc/usermanuals/DD4hep/chapters/basics.tex index ab25d6e47..3daf1ebc9 100644 --- a/doc/usermanuals/DD4hep/chapters/basics.tex +++ b/doc/usermanuals/DD4hep/chapters/basics.tex @@ -830,15 +830,15 @@ \section{Shapes} \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 -Tube(const RMIN& rmin, const RMAX& rmax, const Z& z, const DELTAPHI& deltaPhi) +template +Tube(const RMIN& rmin, const RMAX& rmax, const Z& z, const ENDPHI& endPhi) -template +template 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;