source: trunk/examples/advanced/medical_linac/include/MedLinacHead.hh @ 1358

Last change on this file since 1358 was 807, checked in by garnier, 16 years ago

update

File size: 3.2 KB
Line 
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//
27// $Id: MedLinacHead.hh,v 1.3 2006/06/29 16:03:43 gunter Exp $
28//
29// Code developed by: M. Piergentili
30//
31//
32#ifndef MedLinacHead_h
33#define MedLinacHead_h 1
34
35class MedLinacVGeometryComponent;
36class G4VPhysicalVolume;
37class G4LogicalVolume;
38class G4Region;
39class G4Material;
40class G4VisAttributes;
41class MedLinacHead: public MedLinacVGeometryComponent
42{
43public:
44  MedLinacHead();
45  ~MedLinacHead();
46  void ConstructComponent(G4VPhysicalVolume*,G4VPhysicalVolume*);
47  void DestroyComponent(); 
48 
49  private:
50  G4LogicalVolume* windowUp_log;
51  G4LogicalVolume* UpperCollimator_log;
52  G4LogicalVolume* collim_log;
53  G4LogicalVolume* tracker_log;
54  G4LogicalVolume* CylMinusCone_log;
55  G4LogicalVolume* windowLow_log;
56  G4LogicalVolume* Window_log;
57  G4LogicalVolume* SignalPlate_log;
58  G4LogicalVolume* Mirror_log;
59  G4LogicalVolume* reticle_log;
60
61  G4VPhysicalVolume* windowUp_phys;
62  G4VPhysicalVolume* UpperCollimator_phys;
63  G4VPhysicalVolume* CylMinusCone_phys;
64  G4VPhysicalVolume* windowLow_phys;
65  G4VPhysicalVolume* Window1_phys;
66  G4VPhysicalVolume* SignalPlate1_phys;
67  G4VPhysicalVolume* SignalPlate2_phys;
68  G4VPhysicalVolume* Window2_phys;
69  G4VPhysicalVolume* SignalPlate3_phys;
70  G4VPhysicalVolume* SignalPlate4_phys;
71  G4VPhysicalVolume* Window3_phys;
72  G4VPhysicalVolume* Mirror_phys;
73  G4VPhysicalVolume* reticle_phys;
74
75  G4Region* aLowerCollRegion;
76  G4Region* aUpperCollRegion;
77
78
79  G4VisAttributes* simpleTungstenWVisAtt;
80  G4VisAttributes* simpleTungstenSVisAtt;
81  G4VisAttributes* simpleCopperSVisAtt;
82  G4VisAttributes* simpleMylarVisAtt;
83  G4VisAttributes* simpleKaptonVisAtt;
84  G4VisAttributes* simpleWorldVisAtt;
85};
86#endif
Note: See TracBrowser for help on using the repository browser.