Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AdjointPosOnPhysVolGenerator.hh
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/////////////////////////////////////////////////////////////////////////////////
29// Class Name: G4AdjointPosOnPhysVolGenerator
30// Author: L. Desorgher
31// Organisation: SpaceIT GmbH
32// Contract: ESA contract 21435/08/NL/AT
33// Customer: ESA/ESTEC
34/////////////////////////////////////////////////////////////////////////////////
35//
36// CHANGE HISTORY
37// --------------
38// ChangeHistory:
39// 1st June 2006 creation by L. Desorgher
40//
41//-------------------------------------------------------------
42// Documentation:
43// This class is responsible for the generation of primary adjoint particle on the external surface of a user selected volume.
44// The particle are generated uniformly on the surface with the angular distribution set to a cosine law relative to normal of the surface.
45// It is equivalent to the flux going in from the surface if an isotropic flux is considered outside.
46// It uses ray tracking technique and can be applied to all kind of convex volume. Uisng the ray tracking technique the area
47// of the external surface is also computed. The area is needed to fix the weight of the primary adjoint particle.
48// At the time of the development of this class, generation of particle on volume surface and computation of surface was limited in G4,
49// therfore the general ray tracking technique was adopted. It could be now (2009) that direct method of G4VSolid could be used instead. To be checked!
50//
51//
52//
53#ifndef G4AdjointPosOnPhysVolGenerator_h
54#define G4AdjointPosOnPhysVolGenerator_h 1
55
56#include "G4VPhysicalVolume.hh"
57#include "G4AffineTransform.hh"
58#include "G4ThreeVector.hh"
59
60class G4VSolid;
61
63///////////////////////
64{
65
66//--------
67 public: //without description
68//--------
69
71
72//--------
73 public: //public methods
74//--------
76 void DefinePhysicalVolume1(const G4String& aName);
83
88 G4double& costh_to_normal);
89
90 //inline public methods
91
92 inline void SetSolid(G4VSolid* aSolid){theSolid=aSolid;}
93 inline G4double GetAreaOfExtSurfaceOfThePhysicalVolume(){return AreaOfExtSurfaceOfThePhysicalVolume;}
94 inline G4double GetCosThDirComparedToNormal(){return CosThDirComparedToNormal;}
95
96//---------
97 private: //private methods
98//---------
101 G4double ComputeAreaOfExtSurfaceStartingFromSphere(G4VSolid* aSolid,G4int NStat);
102 G4double ComputeAreaOfExtSurfaceStartingFromBox(G4VSolid* aSolid,G4int NStat);
103 void GenerateAPositionOnASolidBoundary(G4VSolid* aSolid,G4ThreeVector& p, G4ThreeVector& direction);
104 G4double GenerateAPositionOnASphereBoundary(G4VSolid* aSolid,G4ThreeVector& p, G4ThreeVector& direction);
105 G4double GenerateAPositionOnABoxBoundary(G4VSolid* aSolid,G4ThreeVector& p, G4ThreeVector& direction);
106 void ComputeTransformationFromPhysVolToWorld();
107
108//---------
109 private: //attributes
110//---------
111 static G4AdjointPosOnPhysVolGenerator* theInstance;
112 G4VSolid* theSolid;
113 G4VPhysicalVolume* thePhysicalVolume;
114 G4int NStat;
115 G4double epsilon;
116 G4bool UseSphere;
117 G4String ModelOfSurfaceSource;
118 G4double ExtSourceRadius;
119 G4double ExtSourceDx,ExtSourceDy,ExtSourceDz ;
120 G4AffineTransform theTransformationFromPhysVolToWorld;
121 G4double AreaOfExtSurfaceOfThePhysicalVolume;
122 G4double CosThDirComparedToNormal;
123};
124
125#endif
126
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
bool G4bool
Definition: G4Types.hh:67
void GenerateAPositionOnTheExtSurfaceOfTheSolid(G4ThreeVector &p, G4ThreeVector &direction)
void GenerateAPositionOnTheExtSurfaceOfThePhysicalVolume(G4ThreeVector &p, G4ThreeVector &direction)
G4VPhysicalVolume * DefinePhysicalVolume(const G4String &aName)
void DefinePhysicalVolume1(const G4String &aName)
void GenerateAPositionOnTheExtSurfaceOfASolid(G4VSolid *aSolid, G4ThreeVector &p, G4ThreeVector &direction)
static G4AdjointPosOnPhysVolGenerator * GetInstance()