// // ******************************************************************** // * 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. * // ******************************************************************** // // $Id: A01HadCalorimeterHit.cc,v 1.11 2006/11/14 07:11:19 perl Exp $ // -------------------------------------------------------------- // #include "A01HadCalorimeterHit.hh" #include "A01DetectorConstruction.hh" #include "G4RunManager.hh" #include "G4RotationMatrix.hh" #include "G4Box.hh" #include "G4VVisManager.hh" #include "G4Colour.hh" #include "G4AttDefStore.hh" #include "G4AttDef.hh" #include "G4AttValue.hh" #include "G4UIcommand.hh" #include "G4UnitsTable.hh" #include "G4VisAttributes.hh" #include "G4LogicalVolume.hh" #include "G4ios.hh" G4Allocator A01HadCalorimeterHitAllocator; A01HadCalorimeterHit::A01HadCalorimeterHit() { columnID = -1; rowID = -1; edep = 0.; } A01HadCalorimeterHit::A01HadCalorimeterHit(G4int iCol,G4int iRow) { columnID = iCol; rowID = iRow; edep = 0.; } A01HadCalorimeterHit::~A01HadCalorimeterHit() {;} A01HadCalorimeterHit::A01HadCalorimeterHit(const A01HadCalorimeterHit &right) : G4VHit() { columnID = right.columnID; rowID = right.rowID; edep = right.edep; pos = right.pos; rot = right.rot; } const A01HadCalorimeterHit& A01HadCalorimeterHit::operator=(const A01HadCalorimeterHit &right) { columnID = right.columnID; rowID = right.rowID; edep = right.edep; pos = right.pos; rot = right.rot; return *this; } int A01HadCalorimeterHit::operator==(const A01HadCalorimeterHit &right) const { return (columnID==right.columnID&&rowID==right.rowID); } void A01HadCalorimeterHit::Draw() { G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance(); if(pVVisManager&&(edep>0.)) { // Draw a calorimeter cell with depth propotional to the energy deposition G4Transform3D trans(rot.inverse(),pos); G4VisAttributes attribs; G4Colour colour(1.,0.,0.); attribs.SetColour(colour); attribs.SetForceSolid(true); G4Box box("dummy",15.*cm,15.*cm,1.*m*edep/(0.1*GeV)); pVVisManager->Draw(box,attribs,trans); } } const std::map* A01HadCalorimeterHit::GetAttDefs() const { G4bool isNew; std::map* store = G4AttDefStore::GetInstance("A01HadCalorimeterHit",isNew); if (isNew) { G4String HitType("HitType"); (*store)[HitType] = G4AttDef(HitType,"Hit Type","Physics","","G4String"); G4String Column("Column"); (*store)[Column] = G4AttDef(Column,"Column ID","Physics","","G4int"); G4String Row("Row"); (*store)[Row] = G4AttDef(Row,"Row ID","Physics","","G4int"); G4String Energy("Energy"); (*store)[Energy] = G4AttDef(Energy,"Energy Deposited","Physics","G4BestUnit","G4double"); G4String Pos("Pos"); (*store)[Pos] = G4AttDef(Pos, "Position", "Physics","G4BestUnit","G4ThreeVector"); } return store; } std::vector* A01HadCalorimeterHit::CreateAttValues() const { std::vector* values = new std::vector; values->push_back(G4AttValue("HitType","HadCalorimeterHit","")); values->push_back (G4AttValue("Column",G4UIcommand::ConvertToString(columnID),"")); values->push_back (G4AttValue("Row",G4UIcommand::ConvertToString(rowID),"")); values->push_back (G4AttValue("Energy",G4BestUnit(edep,"Energy"),"")); values->push_back (G4AttValue("Pos",G4BestUnit(pos,"Length"),"")); return values; } void A01HadCalorimeterHit::Print() { G4cout << " Cell[" << rowID << ", " << columnID << "] " << edep/MeV << " (MeV) " << pos << G4endl; }