Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TELTU.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/g3d:$Id$
0002 // Author: Rene Brun   26/06/97
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TELTU
0013 #define ROOT_TELTU
0014 
0015 
0016 ////////////////////////////////////////////////////////////////////////////
0017 //                                                                        //
0018 // TELTU                                                                  //
0019 //                                                                        //
0020 // 'ELTU' is a  cylinder with  an elliptical  section.  It  has three     //
0021 //        parameters:  the  ellipse  semi-axis   in  X,  the  ellipse     //
0022 //        semi-axis in Y  and the half length in Z.   The equation of     //
0023 //        the conical curve is:                                           //
0024 //             X**2/fRx**2  +  Y**2/fRy**2  =  1                          //
0025 //        ELTU is not divisible.                                          //
0026 //                                                                        //
0027 ////////////////////////////////////////////////////////////////////////////
0028 
0029 #include "TTUBE.h"
0030 
0031 class TELTU : public TTUBE {
0032 
0033 public:
0034    TELTU();
0035    TELTU(const char *name, const char *title, const char *material, Float_t rx, Float_t ry,Float_t dz);
0036    ~TELTU() override;
0037 
0038    ClassDefOverride(TELTU,1)  //ELTU shape
0039 };
0040 
0041 #endif