ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
F04Materials.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file F04Materials.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 //
29 //
30 
31 #include "F04Materials.hh"
32 #include "G4SystemOfUnits.hh"
33 
34 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
35 
37 {
39 
40  fNistMan->SetVerbose(2);
41 
43 }
44 
45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46 
48 {
49  delete fVacuum;
50  delete fAir;
51  delete fSci;
52  delete fBeO;
53 }
54 
55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56 
58 
60 {
61  if (fInstance == 0)
62  {
63  fInstance = new F04Materials();
64  }
65  return fInstance;
66 }
67 
68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
69 
71 {
73 
74  if (!mat) mat = G4Material::GetMaterial(material);
75  if (!mat) {G4cout << material << "Not Found, Please Retry"<< G4endl;}
76 
77  return mat;
78 }
79 
80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81 
83 {
84  G4double density;
85  std::vector<G4int> natoms;
86  std::vector<G4double> fractionMass;
87  std::vector<G4String> elements;
88 
89  // Materials Definitions
90  // =====================
91 
92  // Define Vacuum
93 
94  fVacuum = fNistMan->FindOrBuildMaterial("G4_Galactic");
95 
96  // Define Air
97 
98  fAir = fNistMan->FindOrBuildMaterial("G4_AIR");
99 
100  // Define BeO
101 
102  fBeO = fNistMan->FindOrBuildMaterial("G4_BERYLLIUM_OXIDE");
103 
104  // Define Scintillator
105 
106  elements.push_back("C"); natoms.push_back(9);
107  elements.push_back("H"); natoms.push_back(10);
108 
109  density = 1.032*g/cm3;;
110 
111  fSci = fNistMan->
112  ConstructNewMaterial("Scintillator", elements, natoms, density);
113 
114  elements.clear();
115  natoms.clear();
116 
117  G4cout << G4endl << "The materials defined are: " << G4endl << G4endl;
118 
119  G4cout << *(G4Material::GetMaterialTable()) << G4endl;
120 }