Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
examples
extended
optical
LXe
src
LXePMTHit.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
//
28
//
29
//
30
#include "
LXePMTHit.hh
"
31
#include "
G4ios.hh
"
32
#include "
G4VVisManager.hh
"
33
#include "
G4Colour.hh
"
34
#include "
G4VisAttributes.hh
"
35
#include "
G4LogicalVolume.hh
"
36
#include "
G4VPhysicalVolume.hh
"
37
38
G4Allocator<LXePMTHit>
LXePMTHitAllocator
;
39
40
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41
42
LXePMTHit::LXePMTHit
()
43
: fPmtNumber(-1),fPhotons(0),fPhysVol(0),fDrawit(false) {}
44
45
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46
47
LXePMTHit::~LXePMTHit
() {}
48
49
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
50
51
LXePMTHit::LXePMTHit
(
const
LXePMTHit
&
right
) :
G4VHit
()
52
{
53
fPmtNumber=right.fPmtNumber;
54
fPhotons=right.fPhotons;
55
fPhysVol=right.fPhysVol;
56
fDrawit=right.fDrawit;
57
}
58
59
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
60
61
const
LXePMTHit
&
LXePMTHit::operator=
(
const
LXePMTHit
&
right
){
62
fPmtNumber = right.fPmtNumber;
63
fPhotons=right.fPhotons;
64
fPhysVol=right.fPhysVol;
65
fDrawit=right.fDrawit;
66
return
*
this
;
67
}
68
69
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70
71
G4int
LXePMTHit::operator==
(
const
LXePMTHit
&
right
)
const
{
72
return
(fPmtNumber==right.fPmtNumber);
73
}
74
75
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
76
77
void
LXePMTHit::Draw
(){
78
if
(fDrawit&&fPhysVol){
//ReDraw only the PMTs that have hit counts > 0
79
//Also need a physical volume to be able to draw anything
80
G4VVisManager
* pVVisManager =
G4VVisManager::GetConcreteInstance
();
81
if
(pVVisManager){
//Make sure that the VisManager exists
82
G4VisAttributes
attribs(
G4Colour
(1.,0.,0.));
83
attribs.
SetForceSolid
(
true
);
84
G4RotationMatrix
rot;
85
if
(fPhysVol->
GetRotation
())
//If a rotation is defined use it
86
rot=*(fPhysVol->
GetRotation
());
87
G4Transform3D
trans(rot,fPhysVol->
GetTranslation
());
//Create transform
88
pVVisManager->
Draw
(*fPhysVol,attribs,trans);
//Draw it
89
}
90
}
91
}
92
93
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
94
95
void
LXePMTHit::Print
() {}
Generated on Sat May 25 2013 14:32:58 for Geant4 by
1.8.4