source: trunk/examples/advanced/medical_linac/include/ML2PhaseSpaces.hh@ 1330

Last change on this file since 1330 was 1230, checked in by garnier, 16 years ago

update to geant4.9.3

  • Property svn:executable set to *
File size: 3.3 KB
Line 
1//
2// ********************************************************************
3// * DISCLAIMER *
4// * *
5// * The following disclaimer summarizes all the specific disclaimers *
6// * of contributors to this software. The specific disclaimers,which *
7// * govern, are listed with their locations in: *
8// * http://cern.ch/geant4/license *
9// * *
10// * Neither the authors of this software system, nor their employing *
11// * institutes,nor the agencies providing financial support for this *
12// * work make any representation or warranty, express or implied, *
13// * regarding this software system or assume any liability for its *
14// * use. *
15// * *
16// * This code implementation is the intellectual property of the *
17// * GEANT4 collaboration. *
18// * By copying, distributing or modifying the Program (or any work *
19// * based on the Program) you indicate your acceptance of this *
20// * statement, and all its terms. *
21// ********************************************************************
22//
23// The code was written by :
24// ^Claudio Andenna claudio.andenna@iss.infn.it, claudio.andenna@ispesl.it
25// *Barbara Caccia barbara.caccia@iss.it
26// with the support of Pablo Cirrone (LNS, INFN Catania Italy)
27//
28// ^ISPESL and INFN Roma, gruppo collegato Sanità, Italy
29// *Istituto Superiore di Sanità and INFN Roma, gruppo collegato Sanità, Italy
30// Viale Regina Elena 299, 00161 Roma (Italy)
31// tel (39) 06 49902246
32// fax (39) 06 49387075
33//
34// more information:
35// http://g4advancedexamples.lngs.infn.it/Examples/medical-linac
36//
37//*******************************************************//
38
39
40#ifndef CML2PhaseSpacesH
41#define CML2PhaseSpacesH
42
43#include "G4VPhysicalVolume.hh"
44#include "G4LogicalVolume.hh"
45#include "G4Box.hh"
46#include "G4VisAttributes.hh"
47#include "G4PVPlacement.hh"
48#include "G4NistManager.hh"
49
50#include "ML2SDWithParticle.hh"
51#include "ML2SDWithVoxels.hh"
52#include "G4SDManager.hh"
53#include "ML2SinputData.hh"
54
55class CML2PhaseSpaces
56{
57public:
58 CML2PhaseSpaces();
59 ~CML2PhaseSpaces(void);
60 bool createPlane(G4VPhysicalVolume *PVWorld, G4String name, G4ThreeVector centre, G4ThreeVector halfSize);
61 bool createPlane(G4int idSD_Type, G4int max_N_particles_in_PhSp_File, G4int seed, G4int nMaxParticlesInRamPhaseSpace, G4VPhysicalVolume *PVWorld, G4String name, G4String PhaseSpaceOutFile, G4bool bSavePhaseSpace, G4bool bStopAtPhaseSpace, G4ThreeVector centre, G4ThreeVector halfSize, SPrimaryParticle *primaryParticleData);
62 G4int getCML2SensDetNParticle(){return this->sensDetParticle->getTotalNumberOfParticles();};
63 inline CML2SDWithParticle* getCML2SensitiveDetectorParticle(){return this->sensDetParticle->getCML2SensitiveDetectorParticle();};
64 inline bool getBContinueRun(){return this->sensDetParticle->getBContinueRun();};
65 CML2SDWithParticle *sensDetParticle;
66private:
67 CML2SDWithVoxels *sensDetVoxelized;
68 G4int nParticles;
69};
70
71
72#endif
Note: See TracBrowser for help on using the repository browser.