Loading...
Searching...
No Matches
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//
26//
27/// \file optical/LXe/src/LXePMTHit.cc
28/// \brief Implementation of the LXePMTHit class
29//
30//
31#include "LXePMTHit.hh"
32
33#include "G4Colour.hh"
34#include "G4ios.hh"
35#include "G4LogicalVolume.hh"
36#include "G4VisAttributes.hh"
37#include "G4VPhysicalVolume.hh"
38#include "G4VVisManager.hh"
39
41
42//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43
45 : G4VHit()
46{
47 fPmtNumber = right.fPmtNumber;
48 fPhotons = right.fPhotons;
49 fPhysVol = right.fPhysVol;
50 fDrawit = right.fDrawit;
51}
52
53//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
54
56{
58 fPhotons = right.fPhotons;
59 fPhysVol = right.fPhysVol;
60 fDrawit = right.fDrawit;
61 return *this;
62}
63
64//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
65
67{
68 return (fPmtNumber == right.fPmtNumber);
69}
70
71//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72
74{
75 if(fDrawit && fPhysVol)
76 { // Redraw only the PMTs that have hit counts > 0
77 // Also need a physical volume to be able to draw anything
78 G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance();
79 if(pVVisManager)
80 { // Make sure that the VisManager exists
81 G4VisAttributes attribs(G4Colour(1., 0., 0.));
82 attribs.SetForceSolid(true);
83 G4RotationMatrix rot;
84 if(fPhysVol->GetRotation()) // If a rotation is defined use it
85 rot = *(fPhysVol->GetRotation());
86 G4Transform3D trans(rot, fPhysVol->GetTranslation()); // Create transform
87 pVVisManager->Draw(*fPhysVol, attribs, trans); // Draw it
88 }
89 }
90}
91
92//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
93
G4ThreadLocal G4Allocator< LXePMTHit > * LXePMTHitAllocator
Definition LXePMTHit.cc:40
Definition of the LXePMTHit class.
void Print() override
Definition LXePMTHit.cc:94
G4int fPmtNumber
Definition LXePMTHit.hh:79
const LXePMTHit & operator=(const LXePMTHit &right)
Definition LXePMTHit.cc:55
G4bool operator==(const LXePMTHit &right) const
Definition LXePMTHit.cc:66
void Draw() override
Definition LXePMTHit.cc:73
G4VPhysicalVolume * fPhysVol
Definition LXePMTHit.hh:82
G4bool fDrawit
Definition LXePMTHit.hh:83
LXePMTHit()=default
G4int fPhotons
Definition LXePMTHit.hh:80

Applications | User Support | Publications | Collaboration