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