52   constructorParams.origin       = origin;
 
   53   constructorParams.axis         = axis;
 
   54   constructorParams.direction    = direction;
 
   55   constructorParams.length       = length;
 
   56   constructorParams.radius       = radius;
 
   73   constructorParams.origin       = rhs.constructorParams.origin;
 
   74   constructorParams.axis         = rhs.constructorParams.axis;
 
   75   constructorParams.direction    = rhs.constructorParams.direction;
 
   76   constructorParams.length       = rhs.constructorParams.length;
 
   77   constructorParams.radius       = rhs.constructorParams.radius;
 
   87   if (
this == &rhs)  { 
return *
this; }
 
   95   constructorParams.origin       = rhs.constructorParams.origin;
 
   96   constructorParams.axis         = rhs.constructorParams.axis;
 
   97   constructorParams.direction    = rhs.constructorParams.direction;
 
   98   constructorParams.length       = rhs.constructorParams.length;
 
   99   constructorParams.radius       = rhs.constructorParams.radius;
 
  101   InitializeCylinder();
 
  106 void G4BREPSolidCylinder::InitializeCylinder()
 
  114                                             constructorParams.axis,
 
  115                                             constructorParams.radius,
 
  116                                             constructorParams.length);
 
  122                                 + ( constructorParams.radius
 
  123                                 *   constructorParams.direction ) );
 
  128                                 constructorParams.origin),
 
  129              constructorParams.radius );
 
  130   tmp->SetBounds(ArcStart1, ArcStart1);
 
  134                                constructorParams.origin);
 
  141                                 + ( constructorParams.length
 
  142                                 *   constructorParams.axis ) );  
 
  145                                   * constructorParams.direction );
 
  151              constructorParams.radius);
 
  152   tmp->SetBounds(ArcStart2, ArcStart2);
 
  172   << 
"\n origin:       " << constructorParams.origin
 
  173   << 
"\n axis:         " << constructorParams.axis
 
  174   << 
"\n direction:    " << constructorParams.direction
 
  175   << 
"\n length:       " << constructorParams.length
 
  176   << 
"\n radius:       " << constructorParams.radius
 
  177   << 
"\n-----------------------------------------------------------\n";