Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // Geant44 Class header file << 26 // $Id: G4PolarizationManager.hh 69847 2013-05-16 09:36:18Z gcosmo $ >> 27 // >> 28 // GEANT4 Class header file >> 29 // 27 // 30 // 28 // File name: G4PolarizationManager 31 // File name: G4PolarizationManager 29 // 32 // 30 // Author: Andreas Schaelicke 33 // Author: Andreas Schaelicke 31 // 34 // >> 35 // Creation date: 01.05.2005 >> 36 // >> 37 // Modifications: >> 38 // 12-08-06 Helper routines are moved to G4PolarizationHelper >> 39 // 32 // Class Description: 40 // Class Description: 33 // Provides polarization information for log << 41 // >> 42 // Provides polarization information for logical volumes, and some basic >> 43 // transformation routines. 34 44 35 #ifndef G4PolarizationManager_h 45 #ifndef G4PolarizationManager_h 36 #define G4PolarizationManager_h 1 46 #define G4PolarizationManager_h 1 37 47 38 #include "globals.hh" 48 #include "globals.hh" 39 #include "G4StokesVector.hh" << 49 #include <vector> 40 #include "G4ThreeVector.hh" 50 #include "G4ThreeVector.hh" 41 51 42 #include <vector> << 43 #include <map> 52 #include <map> 44 53 45 class G4LogicalVolume; 54 class G4LogicalVolume; >> 55 class G4PolarizationManager; 46 class G4PolarizationMessenger; 56 class G4PolarizationMessenger; 47 57 48 typedef std::map<G4LogicalVolume*, G4ThreeVect << 58 typedef std::map<G4LogicalVolume*,G4ThreeVector> PolarizationMap; 49 59 50 class G4PolarizationManager << 60 class G4PolarizationManager { 51 { << 61 public: 52 public: << 62 53 ~G4PolarizationManager(); << 63 virtual ~G4PolarizationManager(); 54 static G4PolarizationManager* GetInstance(); 64 static G4PolarizationManager* GetInstance(); 55 static void Dispose(); 65 static void Dispose(); 56 66 57 void ListVolumes(); 67 void ListVolumes(); 58 inline void Clean(); 68 inline void Clean(); 59 69 60 void SetVolumePolarization(G4LogicalVolume* << 70 void SetVolumePolarization(G4LogicalVolume* lVol, const G4ThreeVector & pol); 61 void SetVolumePolarization(const G4String& l << 71 void SetVolumePolarization(const G4String & lVolName, const G4ThreeVector & pol); 62 const G4ThreeVect << 63 72 64 inline const G4StokesVector GetVolumePolariz << 73 inline const G4ThreeVector & GetVolumePolarization(G4LogicalVolume* lVol) const; 65 G4LogicalVolume* lVol) const; << 66 inline bool IsPolarized(G4LogicalVolume* lVo 74 inline bool IsPolarized(G4LogicalVolume* lVol) const; 67 75 68 inline void SetVerbose(G4int val); 76 inline void SetVerbose(G4int val); 69 inline G4int GetVerbose() const; 77 inline G4int GetVerbose() const; 70 78 71 inline void SetActivated(G4bool val); 79 inline void SetActivated(G4bool val); 72 inline bool IsActivated() const; 80 inline bool IsActivated() const; 73 81 74 G4PolarizationManager& operator=(const G4Pol << 82 private: 75 G4PolarizationManager(const G4PolarizationMa << 76 << 77 private: << 78 G4PolarizationManager(); 83 G4PolarizationManager(); 79 static G4ThreadLocal G4PolarizationManager* << 80 << 81 G4PolarizationMessenger* fMessenger; << 82 84 83 PolarizationMap fVolumePolarizations; << 85 G4ThreeVector zeroPolarization; >> 86 PolarizationMap volumePolarizations; >> 87 G4PolarizationMessenger * messenger; 84 88 85 G4int fVerboseLevel; << 89 G4int verboseLevel; >> 90 G4bool activated; 86 91 87 G4bool fActivated; << 92 static G4PolarizationManager* instance; 88 }; 93 }; 89 94 90 //....oooOO0OOooo........oooOO0OOooo........oo 95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 91 inline const G4StokesVector G4PolarizationMana << 96 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 92 G4LogicalVolume* lVol) const << 97 >> 98 inline const G4ThreeVector & G4PolarizationManager::GetVolumePolarization(G4LogicalVolume* lVol) const 93 { 99 { 94 if(!fActivated) << 100 if (!activated) return zeroPolarization; 95 return G4StokesVector::ZERO; << 101 PolarizationMap::const_iterator cit=volumePolarizations.find(lVol); 96 PolarizationMap::const_iterator cit = fVolum << 102 if (cit!=volumePolarizations.end()) return cit->second; 97 if(cit != fVolumePolarizations.end()) << 103 return zeroPolarization; 98 { << 99 const G4StokesVector vec = G4StokesVector( << 100 return vec; << 101 } << 102 return G4StokesVector::ZERO; << 103 } 104 } 104 105 105 //....oooOO0OOooo........oooOO0OOooo........oo 106 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 107 106 inline bool G4PolarizationManager::IsPolarized 108 inline bool G4PolarizationManager::IsPolarized(G4LogicalVolume* lVol) const 107 { 109 { 108 if(!fActivated) << 110 if (!activated) return false; 109 return false; << 111 PolarizationMap::const_iterator cit=volumePolarizations.find(lVol); 110 PolarizationMap::const_iterator cit = fVolum << 112 return (cit!=volumePolarizations.end()); 111 return (cit != fVolumePolarizations.end()); << 112 } 113 } 113 114 114 //....oooOO0OOooo........oooOO0OOooo........oo 115 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 115 inline void G4PolarizationManager::SetVerbose( << 116 116 { << 117 inline void G4PolarizationManager::SetVerbose(G4int val) { verboseLevel = val; } 117 fVerboseLevel = val; << 118 inline G4int G4PolarizationManager::GetVerbose() const { return verboseLevel; } 118 } << 119 inline G4int G4PolarizationManager::GetVerbose << 120 119 121 //....oooOO0OOooo........oooOO0OOooo........oo 120 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 122 inline void G4PolarizationManager::SetActivate << 121 123 { << 122 inline void G4PolarizationManager::SetActivated(G4bool val) { activated = val; } 124 fActivated = val; << 123 inline bool G4PolarizationManager::IsActivated() const { return activated; } 125 } << 124 126 inline bool G4PolarizationManager::IsActivated << 127 //....oooOO0OOooo........oooOO0OOooo........oo 125 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 128 126 129 inline void G4PolarizationManager::Clean() { f << 127 inline void G4PolarizationManager::Clean() { volumePolarizations.clear(); } >> 128 >> 129 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 130 130 131 #endif 131 #endif >> 132 132 133