Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4PolarizationManager.cc
Go to the documentation of this file.
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// $Id$
27//
28// GEANT4 Class file
29//
30//
31// File name: G4PolarizationManager
32//
33// Author: Andreas Schaelicke
34//
35// Creation date: 01.05.2005
36//
37// Modifications:
38//
39// Class Description:
40//
41// Provides polarization information for logical volumes, and some basic
42// transformation routines.
43//
46#include "G4StokesVector.hh"
47
48#include "G4LogicalVolume.hh"
49
50G4PolarizationManager * G4PolarizationManager::instance = 0;
51
53{
54 if (instance == 0) instance = new G4PolarizationManager();
55 return instance;
56}
57
59{
60 if (instance != 0)
61 {
62 delete instance;
63 instance = 0;
64 }
65}
66
67G4PolarizationManager::G4PolarizationManager()
68 : messenger(0), verboseLevel(0), activated(true)
69{
70 messenger = new G4PolarizationMessenger(this);
71}
72
74{
75}
76
78{
79 if (volumePolarizations.size()==0) return;
80 G4cout<<" Polarization for "<<volumePolarizations.size()
81 <<" registered volume(s) : "<<G4endl;
82 if (!activated)
83 G4cout<<" but polarization deactivated "<<G4endl;
84 for (PolarizationMap::const_iterator cit=volumePolarizations.begin();
85 cit!=volumePolarizations.end();cit++) {
86 G4cout<<cit->first->GetName()<<" : "<<cit->second<<G4endl;
87 }
88}
89
91{
92 volumePolarizations[lVol]=pol;
93 if (verboseLevel>=1) G4cout<<" SetVolumePolarization "
94 <<lVol->GetName()<<" "
95 <<pol<<G4endl;
96}
97
99{
100 for (PolarizationMap::iterator it=volumePolarizations.begin();
101 it!=volumePolarizations.end();it++) {
102 if (it->first->GetName()==lVolName) {
103 it->second=pol;
104 if (verboseLevel>=1) G4cout<<" SetVolumePolarization "
105 <<lVolName<<" "
106 <<pol<<G4endl;
107 return;
108 }
109 }
110 G4cout<<" logical volume '"<<lVolName<<"'not registerd yet \n"
111 <<" please register before using '/polarization/volume/set' "<<G4endl;
112}
113
#define G4endl
Definition: G4ios.hh:52
G4DLLIMPORT std::ostream G4cout
G4String GetName() const
void SetVolumePolarization(G4LogicalVolume *lVol, const G4ThreeVector &pol)
static G4PolarizationManager * GetInstance()