Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
LXePMTHit.cc
이 파일의 문서화 페이지로 가기
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: LXePMTHit.cc 110138 2018-05-16 07:31:43Z gcosmo $
27 //
30 //
31 //
32 #include "LXePMTHit.hh"
33 #include "G4ios.hh"
34 #include "G4VVisManager.hh"
35 #include "G4Colour.hh"
36 #include "G4VisAttributes.hh"
37 #include "G4LogicalVolume.hh"
38 #include "G4VPhysicalVolume.hh"
39 
41 
42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43 
45  : fPmtNumber(-1),fPhotons(0),fPhysVol(nullptr),fDrawit(false) {}
46 
47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48 
50 
51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52 
54 {
55  fPmtNumber=right.fPmtNumber;
56  fPhotons=right.fPhotons;
57  fPhysVol=right.fPhysVol;
58  fDrawit=right.fDrawit;
59 }
60 
61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62 
64  fPmtNumber = right.fPmtNumber;
65  fPhotons=right.fPhotons;
66  fPhysVol=right.fPhysVol;
67  fDrawit=right.fDrawit;
68  return *this;
69 }
70 
71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72 
74  return (fPmtNumber==right.fPmtNumber);
75 }
76 
77 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
78 
80  if(fDrawit&&fPhysVol){ //ReDraw only the PMTs that have hit counts > 0
81  //Also need a physical volume to be able to draw anything
83  if(pVVisManager){//Make sure that the VisManager exists
84  G4VisAttributes attribs(G4Colour(1.,0.,0.));
85  attribs.SetForceSolid(true);
86  G4RotationMatrix rot;
87  if(fPhysVol->GetRotation())//If a rotation is defined use it
88  rot=*(fPhysVol->GetRotation());
89  G4Transform3D trans(rot,fPhysVol->GetTranslation());//Create transform
90  pVVisManager->Draw(*fPhysVol,attribs,trans);//Draw it
91  }
92  }
93 }
94 
95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
96 
virtual void Draw(const G4Circle &, const G4Transform3D &objectTransformation=G4Transform3D())=0
Definition: G4VHit.hh:48
const G4ThreeVector & GetTranslation() const
#define G4ThreadLocal
Definition: tls.hh:69
static G4VVisManager * GetConcreteInstance()
G4int operator==(const LXePMTHit &right) const
Definition: LXePMTHit.cc:73
G4bool fDrawit
Definition: LXePMTHit.hh:89
G4int fPhotons
Definition: LXePMTHit.hh:86
void SetForceSolid(G4bool=true)
const LXePMTHit & operator=(const LXePMTHit &right)
Definition: LXePMTHit.cc:63
int G4int
Definition: G4Types.hh:78
virtual void Draw()
Definition: LXePMTHit.cc:79
virtual ~LXePMTHit()
Definition: LXePMTHit.cc:49
G4VPhysicalVolume * fPhysVol
Definition: LXePMTHit.hh:88
const G4RotationMatrix * GetRotation() const
G4ThreadLocal G4Allocator< LXePMTHit > * LXePMTHitAllocator
Definition: LXePMTHit.cc:40
Definition of the LXePMTHit class.
virtual void Print()
Definition: LXePMTHit.cc:97
G4int fPmtNumber
Definition: LXePMTHit.hh:85