// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // #include "LXePMTHit.hh" #include "G4ios.hh" #include "G4VVisManager.hh" #include "G4Colour.hh" #include "G4VisAttributes.hh" #include "G4LogicalVolume.hh" #include "G4VPhysicalVolume.hh" G4Allocator LXePMTHitAllocator; //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ LXePMTHit::LXePMTHit() :pmtNumber(-1),photons(0),physVol(0),drawit(false) {} //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ LXePMTHit::~LXePMTHit() {} //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ LXePMTHit::LXePMTHit(const LXePMTHit &right) : G4VHit() { pmtNumber=right.pmtNumber; photons=right.photons; physVol=right.physVol; drawit=right.drawit; } //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ const LXePMTHit& LXePMTHit::operator=(const LXePMTHit &right){ pmtNumber = right.pmtNumber; photons=right.photons; physVol=right.physVol; drawit=right.drawit; return *this; } //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ G4int LXePMTHit::operator==(const LXePMTHit &right) const{ return (pmtNumber==right.pmtNumber); } //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ void LXePMTHit::Draw(){ if(drawit&&physVol){ //ReDraw only the PMTs that have hit counts > 0 //Also need a physical volume to be able to draw anything G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance(); if(pVVisManager){//Make sure that the VisManager exists G4VisAttributes attribs(G4Colour(1.,0.,0.)); attribs.SetForceSolid(true); G4RotationMatrix rot; if(physVol->GetRotation())//If a rotation is defined use it rot=*(physVol->GetRotation()); G4Transform3D trans(rot,physVol->GetTranslation());//Create transform pVVisManager->Draw(*physVol,attribs,trans);//Draw it } } } //_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ void LXePMTHit::Print(){ }