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 97384 2016-06-02 09:59:17Z 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; 46 class G4PolarizationMessenger; 55 class G4PolarizationMessenger; 47 56 48 typedef std::map<G4LogicalVolume*, G4ThreeVect << 57 typedef std::map<G4LogicalVolume*,G4ThreeVector> PolarizationMap; 49 58 50 class G4PolarizationManager << 59 class G4PolarizationManager { 51 { << 60 public: 52 public: << 61 53 ~G4PolarizationManager(); << 62 virtual ~G4PolarizationManager(); 54 static G4PolarizationManager* GetInstance(); 63 static G4PolarizationManager* GetInstance(); 55 static void Dispose(); 64 static void Dispose(); 56 65 57 void ListVolumes(); 66 void ListVolumes(); 58 inline void Clean(); 67 inline void Clean(); 59 68 60 void SetVolumePolarization(G4LogicalVolume* << 69 void SetVolumePolarization(G4LogicalVolume* lVol, const G4ThreeVector & pol); 61 void SetVolumePolarization(const G4String& l << 70 void SetVolumePolarization(const G4String & lVolName, const G4ThreeVector & pol); 62 const G4ThreeVect << 63 71 64 inline const G4StokesVector GetVolumePolariz << 72 inline const G4ThreeVector & GetVolumePolarization(G4LogicalVolume* lVol) const; 65 G4LogicalVolume* lVol) const; << 66 inline bool IsPolarized(G4LogicalVolume* lVo 73 inline bool IsPolarized(G4LogicalVolume* lVol) const; 67 74 68 inline void SetVerbose(G4int val); 75 inline void SetVerbose(G4int val); 69 inline G4int GetVerbose() const; 76 inline G4int GetVerbose() const; 70 77 71 inline void SetActivated(G4bool val); 78 inline void SetActivated(G4bool val); 72 inline bool IsActivated() const; 79 inline bool IsActivated() const; 73 80 74 G4PolarizationManager& operator=(const G4Pol << 81 private: 75 G4PolarizationManager(const G4PolarizationMa << 76 << 77 private: << 78 G4PolarizationManager(); 82 G4PolarizationManager(); 79 static G4ThreadLocal G4PolarizationManager* << 80 << 81 G4PolarizationMessenger* fMessenger; << 82 83 83 PolarizationMap fVolumePolarizations; << 84 G4ThreeVector zeroPolarization; >> 85 PolarizationMap volumePolarizations; >> 86 G4PolarizationMessenger * messenger; 84 87 85 G4int fVerboseLevel; << 88 G4int verboseLevel; >> 89 G4bool activated; 86 90 87 G4bool fActivated; << 91 static G4ThreadLocal G4PolarizationManager* instance; 88 }; 92 }; 89 93 90 //....oooOO0OOooo........oooOO0OOooo........oo 94 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 91 inline const G4StokesVector G4PolarizationMana << 95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 92 G4LogicalVolume* lVol) const << 96 >> 97 inline const G4ThreeVector & G4PolarizationManager::GetVolumePolarization(G4LogicalVolume* lVol) const 93 { 98 { 94 if(!fActivated) << 99 if (!activated) return zeroPolarization; 95 return G4StokesVector::ZERO; << 100 PolarizationMap::const_iterator cit=volumePolarizations.find(lVol); 96 PolarizationMap::const_iterator cit = fVolum << 101 if (cit!=volumePolarizations.end()) return cit->second; 97 if(cit != fVolumePolarizations.end()) << 102 return zeroPolarization; 98 { << 99 const G4StokesVector vec = G4StokesVector( << 100 return vec; << 101 } << 102 return G4StokesVector::ZERO; << 103 } 103 } 104 104 105 //....oooOO0OOooo........oooOO0OOooo........oo 105 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 106 106 inline bool G4PolarizationManager::IsPolarized 107 inline bool G4PolarizationManager::IsPolarized(G4LogicalVolume* lVol) const 107 { 108 { 108 if(!fActivated) << 109 if (!activated) return false; 109 return false; << 110 PolarizationMap::const_iterator cit=volumePolarizations.find(lVol); 110 PolarizationMap::const_iterator cit = fVolum << 111 return (cit!=volumePolarizations.end()); 111 return (cit != fVolumePolarizations.end()); << 112 } 112 } 113 113 114 //....oooOO0OOooo........oooOO0OOooo........oo 114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 115 inline void G4PolarizationManager::SetVerbose( << 115 116 { << 116 inline void G4PolarizationManager::SetVerbose(G4int val) { verboseLevel = val; } 117 fVerboseLevel = val; << 117 inline G4int G4PolarizationManager::GetVerbose() const { return verboseLevel; } 118 } << 119 inline G4int G4PolarizationManager::GetVerbose << 120 118 121 //....oooOO0OOooo........oooOO0OOooo........oo 119 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 122 inline void G4PolarizationManager::SetActivate << 120 123 { << 121 inline void G4PolarizationManager::SetActivated(G4bool val) { activated = val; } 124 fActivated = val; << 122 inline bool G4PolarizationManager::IsActivated() const { return activated; } 125 } << 123 126 inline bool G4PolarizationManager::IsActivated << 127 //....oooOO0OOooo........oooOO0OOooo........oo 124 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 128 125 129 inline void G4PolarizationManager::Clean() { f << 126 inline void G4PolarizationManager::Clean() { volumePolarizations.clear(); } >> 127 >> 128 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 130 129 131 #endif 130 #endif >> 131 132 132