ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4TwistedTrd.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4TwistedTrd.cc
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // G4TwistedTrd
27 //
28 // Author: 18/03/2005 - O.Link (Oliver.Link@cern.ch)
29 // --------------------------------------------------------------------
30 
31 #include "G4TwistedTrd.hh"
32 #include "G4SystemOfUnits.hh"
33 #include "G4Polyhedron.hh"
34 
35 //=====================================================================
36 //* Constructor -------------------------------------------------------
37 
39  G4double pDx1,
40  G4double pDx2,
41  G4double pDy1,
42  G4double pDy2,
43  G4double pDz,
44  G4double pPhiTwist )
45  : G4VTwistedFaceted( pName, pPhiTwist,pDz,0.,0.,
46  pDy1, pDx1, pDx1, pDy2, pDx2, pDx2,0.)
47 {
48 }
49 
50 //=====================================================================
51 // Fake default constructor - sets only member data and allocates memory
52 // for usage restricted to object persistency.
53 
56 {
57 }
58 
59 //=====================================================================
60 //* Destructor --------------------------------------------------------
61 
63 {
64 }
65 
66 //=====================================================================
67 //* Copy constructor --------------------------------------------------
68 
70  : G4VTwistedFaceted(rhs)
71 {
73 }
74 
75 //=====================================================================
76 //* Assignment operator -----------------------------------------------
77 
79 {
80  // Check assignment to self
81  //
82  if (this == &rhs) { return *this; }
83 
84  // Copy base class data
85  //
88 
89  return *this;
90 }
91 
92 //=====================================================================
93 //* StreamInfo --------------------------------------------------------
94 
95 std::ostream& G4TwistedTrd::StreamInfo(std::ostream& os) const
96 {
97  //
98  // Stream object contents to an output stream
99  //
100  os << "-----------------------------------------------------------\n"
101  << " *** Dump for solid - " << GetName() << " ***\n"
102  << " ===================================================\n"
103  << " Solid type: G4TwistedTrd\n"
104  << " Parameters: \n"
105  << " pDx1 = " << GetX1HalfLength()/cm << " cm" << G4endl
106  << " pDx2 = " << GetX2HalfLength()/cm << " cm" << G4endl
107  << " pDy1 = " << GetY1HalfLength()/cm << " cm" << G4endl
108  << " pDy2 = " << GetY2HalfLength()/cm << " cm" << G4endl
109  << " pDz = " << GetZHalfLength()/cm << " cm" << G4endl
110  << " pPhiTwist = " << GetPhiTwist()/degree << " deg" << G4endl
111  << "-----------------------------------------------------------\n";
112 
113  return os;
114 }
115 
116 //=====================================================================
117 //* GetEntityType -----------------------------------------------------
118 
120 {
121  return G4String("G4TwistedTrd");
122 }
123 
124 //=====================================================================
125 //* Clone -------------------------------------------------------------
126 
128 {
129  return new G4TwistedTrd(*this);
130 }