| 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 | //
|
|---|
| 27 | // $Id: G4GDMLParser.icc,v 1.9 2010/02/17 18:06:25 gcosmo Exp $
|
|---|
| 28 | // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
|
|---|
| 29 | //
|
|---|
| 30 | //
|
|---|
| 31 | // class G4GDMLParser inline methods
|
|---|
| 32 | //
|
|---|
| 33 | // -------------------------------------------------------------------------
|
|---|
| 34 |
|
|---|
| 35 | inline
|
|---|
| 36 | void G4GDMLParser::Read(const G4String& filename, G4bool validate)
|
|---|
| 37 | {
|
|---|
| 38 | reader->Read(filename,validate,false);
|
|---|
| 39 | }
|
|---|
| 40 |
|
|---|
| 41 | inline
|
|---|
| 42 | void G4GDMLParser::ReadModule(const G4String& filename, G4bool validate)
|
|---|
| 43 | {
|
|---|
| 44 | reader->Read(filename,validate,true);
|
|---|
| 45 | }
|
|---|
| 46 |
|
|---|
| 47 | inline
|
|---|
| 48 | void G4GDMLParser::Write(const G4String& filename,
|
|---|
| 49 | const G4VPhysicalVolume* const pvol,
|
|---|
| 50 | G4bool refs,
|
|---|
| 51 | const G4String& schemaLocation)
|
|---|
| 52 | {
|
|---|
| 53 | const G4int depth = 0;
|
|---|
| 54 | G4LogicalVolume* lvol = 0;
|
|---|
| 55 |
|
|---|
| 56 | if (!pvol)
|
|---|
| 57 | {
|
|---|
| 58 | G4VPhysicalVolume* worldPV = GetWorldVolume();
|
|---|
| 59 | if (!worldPV)
|
|---|
| 60 | {
|
|---|
| 61 | G4Exception("G4DMLParser::Write()", "InvalidSetup", FatalException,
|
|---|
| 62 | "Detector-Construction needs to be registered first!");
|
|---|
| 63 | }
|
|---|
| 64 | lvol = worldPV->GetLogicalVolume();
|
|---|
| 65 | }
|
|---|
| 66 | else
|
|---|
| 67 | {
|
|---|
| 68 | lvol = pvol->GetLogicalVolume();
|
|---|
| 69 | }
|
|---|
| 70 | writer->Write(filename,lvol,schemaLocation,depth,refs);
|
|---|
| 71 | }
|
|---|
| 72 |
|
|---|
| 73 | inline
|
|---|
| 74 | G4LogicalVolume* G4GDMLParser::ParseST(const G4String& filename,
|
|---|
| 75 | G4Material* medium,
|
|---|
| 76 | G4Material* solid)
|
|---|
| 77 | {
|
|---|
| 78 | G4STRead reader;
|
|---|
| 79 | return reader.Read(filename, medium, solid);
|
|---|
| 80 | }
|
|---|
| 81 |
|
|---|
| 82 | //
|
|---|
| 83 | // Methods for Reader
|
|---|
| 84 | //
|
|---|
| 85 |
|
|---|
| 86 | inline G4bool G4GDMLParser::IsValid(const G4String& name) const
|
|---|
| 87 | {
|
|---|
| 88 | return reader->IsValidID(name);
|
|---|
| 89 | }
|
|---|
| 90 |
|
|---|
| 91 | inline
|
|---|
| 92 | G4double G4GDMLParser::GetConstant(const G4String& name) const
|
|---|
| 93 | {
|
|---|
| 94 | return reader->GetConstant(name);
|
|---|
| 95 | }
|
|---|
| 96 |
|
|---|
| 97 | inline
|
|---|
| 98 | G4double G4GDMLParser::GetVariable(const G4String& name) const
|
|---|
| 99 | {
|
|---|
| 100 | return reader->GetVariable(name);
|
|---|
| 101 | }
|
|---|
| 102 |
|
|---|
| 103 | inline
|
|---|
| 104 | G4double G4GDMLParser::GetQuantity(const G4String& name) const
|
|---|
| 105 | {
|
|---|
| 106 | return reader->GetQuantity(name);
|
|---|
| 107 | }
|
|---|
| 108 |
|
|---|
| 109 | inline
|
|---|
| 110 | G4ThreeVector G4GDMLParser::GetPosition(const G4String& name) const
|
|---|
| 111 | {
|
|---|
| 112 | return reader->GetPosition(name);
|
|---|
| 113 | }
|
|---|
| 114 |
|
|---|
| 115 | inline
|
|---|
| 116 | G4ThreeVector G4GDMLParser::GetRotation(const G4String& name) const
|
|---|
| 117 | {
|
|---|
| 118 | return reader->GetRotation(name);
|
|---|
| 119 | }
|
|---|
| 120 |
|
|---|
| 121 | inline
|
|---|
| 122 | G4ThreeVector G4GDMLParser::GetScale(const G4String& name) const
|
|---|
| 123 | {
|
|---|
| 124 | return reader->GetScale(name);
|
|---|
| 125 | }
|
|---|
| 126 |
|
|---|
| 127 | inline
|
|---|
| 128 | G4GDMLMatrix G4GDMLParser::GetMatrix(const G4String& name) const
|
|---|
| 129 | {
|
|---|
| 130 | return reader->GetMatrix(name);
|
|---|
| 131 | }
|
|---|
| 132 |
|
|---|
| 133 | inline
|
|---|
| 134 | G4LogicalVolume* G4GDMLParser::GetVolume(const G4String& name) const
|
|---|
| 135 | {
|
|---|
| 136 | return reader->GetVolume(name);
|
|---|
| 137 | }
|
|---|
| 138 |
|
|---|
| 139 | inline G4VPhysicalVolume*
|
|---|
| 140 | G4GDMLParser::GetWorldVolume(const G4String& setupName) const
|
|---|
| 141 | {
|
|---|
| 142 | return reader->GetWorldVolume(setupName);
|
|---|
| 143 | }
|
|---|
| 144 |
|
|---|
| 145 | inline
|
|---|
| 146 | G4GDMLAuxListType
|
|---|
| 147 | G4GDMLParser::GetVolumeAuxiliaryInformation(const G4LogicalVolume* const logvol)
|
|---|
| 148 | {
|
|---|
| 149 | return reader->GetVolumeAuxiliaryInformation(logvol);
|
|---|
| 150 | }
|
|---|
| 151 |
|
|---|
| 152 | inline
|
|---|
| 153 | void G4GDMLParser::StripNamePointers() const
|
|---|
| 154 | {
|
|---|
| 155 | reader->StripNames();
|
|---|
| 156 | }
|
|---|
| 157 |
|
|---|
| 158 | inline void G4GDMLParser::SetOverlapCheck(G4bool flag)
|
|---|
| 159 | {
|
|---|
| 160 | reader->OverlapCheck(flag);
|
|---|
| 161 | }
|
|---|
| 162 |
|
|---|
| 163 | //
|
|---|
| 164 | // Methods for Writer
|
|---|
| 165 | //
|
|---|
| 166 |
|
|---|
| 167 | inline
|
|---|
| 168 | void G4GDMLParser::AddModule(const G4VPhysicalVolume* const physvol)
|
|---|
| 169 | {
|
|---|
| 170 | writer->AddModule(physvol);
|
|---|
| 171 | }
|
|---|
| 172 |
|
|---|
| 173 | inline
|
|---|
| 174 | void G4GDMLParser::AddModule(const G4int depth)
|
|---|
| 175 | {
|
|---|
| 176 | writer->AddModule(depth);
|
|---|
| 177 | }
|
|---|
| 178 |
|
|---|
| 179 | inline
|
|---|
| 180 | void G4GDMLParser::SetAddPointerToName(G4bool set)
|
|---|
| 181 | {
|
|---|
| 182 | writer->SetAddPointerToName(set);
|
|---|
| 183 | }
|
|---|