Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: G4VMarker.icc,v 1.6 2001/07/11 10:01:04 gunter Exp $ >> 25 // GEANT4 tag $Name: geant4-04-01 $ 27 // 26 // 28 // 27 // 29 28 30 inline G4bool G4VMarker::operator==(const G4VM << 31 { return !(*this != mk); } << 32 << 33 inline G4Point3D G4VMarker::GetPosition () con 29 inline G4Point3D G4VMarker::GetPosition () const { 34 return fPosition; 30 return fPosition; 35 } 31 } 36 32 37 inline G4double G4VMarker::GetWorldSize () con 33 inline G4double G4VMarker::GetWorldSize () const { 38 return fWorldSize; 34 return fWorldSize; 39 } 35 } 40 36 41 inline G4double G4VMarker::GetWorldDiameter () 37 inline G4double G4VMarker::GetWorldDiameter () const { 42 return fWorldSize; 38 return fWorldSize; 43 } 39 } 44 40 45 inline G4double G4VMarker::GetWorldRadius () c 41 inline G4double G4VMarker::GetWorldRadius () const { 46 return fWorldSize / 2.; 42 return fWorldSize / 2.; 47 } 43 } 48 44 49 inline G4double G4VMarker::GetScreenSize () co 45 inline G4double G4VMarker::GetScreenSize () const { 50 return fScreenSize; 46 return fScreenSize; 51 } 47 } 52 48 53 inline G4double G4VMarker::GetScreenDiameter ( 49 inline G4double G4VMarker::GetScreenDiameter () const { 54 return fScreenSize; 50 return fScreenSize; 55 } 51 } 56 52 57 inline G4double G4VMarker::GetScreenRadius () 53 inline G4double G4VMarker::GetScreenRadius () const { 58 return fScreenSize / 2.; 54 return fScreenSize / 2.; 59 } 55 } 60 56 61 inline G4VMarker::FillStyle G4VMarker::GetFill 57 inline G4VMarker::FillStyle G4VMarker::GetFillStyle () const { 62 return fFillStyle; 58 return fFillStyle; 63 } 59 } 64 60 65 inline void G4VMarker::SetPosition (const G4Po 61 inline void G4VMarker::SetPosition (const G4Point3D& pos) { 66 fPosition = pos; 62 fPosition = pos; 67 } 63 } 68 64 69 inline void G4VMarker::SetDiameter (SizeType s << 70 SetSize(sizeType, size); << 71 } << 72 << 73 inline void G4VMarker::SetRadius (SizeType siz << 74 SetSize(sizeType, 2. * size); << 75 } << 76 << 77 inline void G4VMarker::SetWorldSize (G4double 65 inline void G4VMarker::SetWorldSize (G4double ws) { 78 fWorldSize = ws; 66 fWorldSize = ws; 79 } 67 } 80 68 81 inline void G4VMarker::SetWorldDiameter (G4dou 69 inline void G4VMarker::SetWorldDiameter (G4double wd) { 82 fWorldSize = wd; 70 fWorldSize = wd; 83 } 71 } 84 72 85 inline void G4VMarker::SetWorldRadius (G4doubl 73 inline void G4VMarker::SetWorldRadius (G4double wr) { 86 fWorldSize = 2. * wr; 74 fWorldSize = 2. * wr; 87 } 75 } 88 76 89 inline void G4VMarker::SetScreenSize (G4double 77 inline void G4VMarker::SetScreenSize (G4double ss) { 90 fWorldSize = 0.; 78 fWorldSize = 0.; 91 fScreenSize = ss; 79 fScreenSize = ss; 92 } 80 } 93 81 94 inline void G4VMarker::SetScreenDiameter (G4do 82 inline void G4VMarker::SetScreenDiameter (G4double sd) { 95 fWorldSize = 0.; 83 fWorldSize = 0.; 96 fScreenSize = sd; 84 fScreenSize = sd; 97 } 85 } 98 86 99 inline void G4VMarker::SetScreenRadius (G4doub << 87 inline void G4VMarker::SetScreenRadius (G4double sr) { 100 fWorldSize = 0.; 88 fWorldSize = 0.; 101 fScreenSize = 2. * scr; << 89 fScreenSize = 2. * sr; 102 } 90 } 103 91 104 inline void G4VMarker::SetFillStyle (G4VMarker 92 inline void G4VMarker::SetFillStyle (G4VMarker::FillStyle style) { 105 fFillStyle = style; 93 fFillStyle = style; 106 } 94 } >> 95 >> 96 107 97