ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4PhysicalVolumeSearchScene.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4PhysicalVolumeSearchScene.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 //
27 //
28 //
29 // John Allison 10th August 1998.
30 // An artificial scene to find physical volumes.
31 
33 
34 #include "G4VSolid.hh"
35 #include "G4Vector3D.hh"
36 #include "G4PhysicalVolumeModel.hh"
37 
40  const G4String& requiredPhysicalVolumeName,
41  G4int requiredCopyNo,
42  G4int verbosity):
43  fpPVModel (pPVModel),
44  fRequiredPhysicalVolumeName (requiredPhysicalVolumeName),
45  fRequiredCopyNo (requiredCopyNo),
46  fFoundDepth (0),
47  fpFoundPV (0),
48  fVerbosity (verbosity),
49  fMultipleOccurrence (false)
50 {}
51 
53 
55 
56  G4VPhysicalVolume* pCurrentPV = fpPVModel->GetCurrentPV();
57 
58  /**************************************************
59  G4cout << "Required volume: \"" << fRequiredPhysicalVolumeName
60  << "\", copy no. " << fRequiredCopyNo << G4endl;
61  G4cout << "PhysicalVolume: \"" << pCurrentPV -> GetName ()
62  << "\", copy no. " << pCurrentPV -> GetCopyNo () << G4endl;
63  *******************************************/
64 
65  const G4String& name = fpPVModel->GetCurrentPV() -> GetName ();
66  if (name.length() == fRequiredPhysicalVolumeName.length()) {
67  if (fRequiredPhysicalVolumeName == name) {
68 
70  typedef std::vector<PVNodeID> PVPath;
71  const PVPath& fullPVPath = fpPVModel->GetFullPVPath();
72  G4int currentDepth = fpPVModel->GetCurrentDepth();
73  if ((fRequiredCopyNo < 0 || // I.e., ignore negative request.
74  fRequiredCopyNo == pCurrentPV -> GetCopyNo ())) {
75  // Current policy - take first one found!!
76  if (!fpFoundPV) { // i.e., if not already found.
77  fFoundFullPVPath = fullPVPath;
78  fFoundDepth = currentDepth;
79  fpFoundPV = pCurrentPV;
81  }
82  else {
83  if (!fMultipleOccurrence && fVerbosity > 0) {
84  fMultipleOccurrence = true;
85  G4cout << "G4PhysicalVolumeSearchScene::FindVolume:"
86  << "\n Required volume \""
88  << "\"";
89  if (fRequiredCopyNo >= 0) {
90  G4cout << ", copy no. " << fRequiredCopyNo << ",";
91  }
92  G4cout << " found more than once."
93  "\n This function is not smart enough to distinguish identical"
94  "\n physical volumes which have different parentage. It is"
95  "\n tricky to specify in general. This function gives you access"
96  "\n to the first occurrence only."
97  << G4endl;
98  }
99  }
100  }
101  }
102  }
103 }