180 lines
6.0 KiB
C++
180 lines
6.0 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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: ExN07ParallelWorld.cc,v 1.1 2007/05/04 01:49:28 asaim Exp $
|
|
// GEANT4 tag $Name: geant4-09-02 $
|
|
//
|
|
//
|
|
|
|
#include "ExN07ParallelWorld.hh"
|
|
|
|
#include "G4Tubs.hh"
|
|
#include "G4LogicalVolume.hh"
|
|
#include "G4PVPlacement.hh"
|
|
#include "G4PVReplica.hh"
|
|
|
|
#include "G4SDManager.hh"
|
|
#include "G4MultiFunctionalDetector.hh"
|
|
#include "G4VPrimitiveScorer.hh"
|
|
#include "G4PSEnergyDeposit.hh"
|
|
#include "G4PSNofSecondary.hh"
|
|
#include "G4PSTrackLength.hh"
|
|
#include "G4PSNofStep.hh"
|
|
#include "G4PSMinKinEAtGeneration.hh"
|
|
#include "G4VSDFilter.hh"
|
|
#include "G4SDParticleFilter.hh"
|
|
#include "G4ios.hh"
|
|
|
|
ExN07ParallelWorld::ExN07ParallelWorld(G4String worldName)
|
|
:G4VUserParallelWorld(worldName),constructed(false),serial(false)
|
|
{
|
|
for(size_t i=0;i<3;i++)
|
|
{
|
|
calorLogical[i] = 0;
|
|
layerLogical[i] = 0;
|
|
calorPhysical[i] = 0;
|
|
layerPhysical[i] = 0;
|
|
}
|
|
totalThickness = 2.0*m;
|
|
numberOfLayers = 20;
|
|
calName[0] = "Calor-AP";
|
|
calName[1] = "Calor-BP";
|
|
calName[2] = "Calor-CP";
|
|
}
|
|
|
|
ExN07ParallelWorld::~ExN07ParallelWorld()
|
|
{;}
|
|
|
|
void ExN07ParallelWorld::Construct()
|
|
{
|
|
if(!constructed)
|
|
{
|
|
constructed = true;
|
|
SetupGeometry();
|
|
SetupDetectors();
|
|
}
|
|
}
|
|
|
|
void ExN07ParallelWorld::SetupGeometry()
|
|
{
|
|
//
|
|
// World
|
|
//
|
|
G4VPhysicalVolume* ghostWorld = GetWorld();
|
|
G4LogicalVolume* worldLogical = ghostWorld->GetLogicalVolume();
|
|
|
|
//
|
|
// Calorimeter
|
|
//
|
|
G4VSolid* calorSolid = new G4Tubs("Calor",0.0,0.5*m,totalThickness/2.,0.0,360.*deg);
|
|
G4int i;
|
|
for(i=0;i<3;i++)
|
|
{
|
|
calorLogical[i] = new G4LogicalVolume(calorSolid,0,calName[i]);
|
|
if(serial)
|
|
{
|
|
calorPhysical[i] = new G4PVPlacement(0,
|
|
G4ThreeVector(0.,0.,G4double(i-1)*totalThickness),
|
|
calorLogical[i],calName[i],worldLogical,false,i);
|
|
}
|
|
else
|
|
{
|
|
calorPhysical[i] = new G4PVPlacement(0,
|
|
G4ThreeVector(0.,G4double(i-1)*m,0.),
|
|
calorLogical[i],calName[i],worldLogical,false,i);
|
|
}
|
|
}
|
|
|
|
//
|
|
// Layers --- as absorbers
|
|
//
|
|
G4VSolid* layerSolid = new G4Tubs("Layer",0.0,0.5*m,totalThickness/2.,0.0,360.*deg);
|
|
for(i=0;i<3;i++)
|
|
{
|
|
layerLogical[i] = new G4LogicalVolume(layerSolid,0,calName[i]+"_LayerLog");
|
|
layerPhysical[i] = new G4PVReplica(calName[i]+"_Layer",layerLogical[i],calorLogical[i],kRho,
|
|
numberOfLayers,0.5*m/numberOfLayers);
|
|
}
|
|
|
|
}
|
|
|
|
void ExN07ParallelWorld::SetupDetectors()
|
|
{
|
|
G4SDManager::GetSDMpointer()->SetVerboseLevel(1);
|
|
G4String filterName, particleName;
|
|
|
|
G4SDParticleFilter* gammaFilter = new G4SDParticleFilter(filterName="gammaFilter",particleName="gamma");
|
|
G4SDParticleFilter* electronFilter = new G4SDParticleFilter(filterName="electronFilter",particleName="e-");
|
|
G4SDParticleFilter* positronFilter = new G4SDParticleFilter(filterName="positronFilter",particleName="e+");
|
|
G4SDParticleFilter* epFilter = new G4SDParticleFilter(filterName="epFilter");
|
|
epFilter->add(particleName="e-");
|
|
epFilter->add(particleName="e+");
|
|
|
|
for(G4int i=0;i<3;i++)
|
|
{
|
|
G4String detName = calName[i]+"_para";
|
|
G4MultiFunctionalDetector* det = new G4MultiFunctionalDetector(detName);
|
|
|
|
G4VPrimitiveScorer* primitive;
|
|
primitive = new G4PSEnergyDeposit("eDep");
|
|
det->RegisterPrimitive(primitive);
|
|
primitive = new G4PSNofSecondary("nGamma");
|
|
primitive->SetFilter(gammaFilter);
|
|
det->RegisterPrimitive(primitive);
|
|
primitive = new G4PSNofSecondary("nElectron");
|
|
primitive->SetFilter(electronFilter);
|
|
det->RegisterPrimitive(primitive);
|
|
primitive = new G4PSNofSecondary("nPositron");
|
|
primitive->SetFilter(positronFilter);
|
|
det->RegisterPrimitive(primitive);
|
|
primitive = new G4PSTrackLength("trackLength");
|
|
primitive->SetFilter(epFilter);
|
|
det->RegisterPrimitive(primitive);
|
|
primitive = new G4PSNofStep("nStep");
|
|
primitive->SetFilter(epFilter);
|
|
det->RegisterPrimitive(primitive);
|
|
|
|
G4SDManager::GetSDMpointer()->AddNewDetector(det);
|
|
layerLogical[i]->SetSensitiveDetector(det);
|
|
}
|
|
G4SDManager::GetSDMpointer()->SetVerboseLevel(0);
|
|
}
|
|
|
|
void ExN07ParallelWorld::SetSerialGeometry(G4bool ser)
|
|
{
|
|
if(serial==ser) return;
|
|
serial=ser;
|
|
if(!constructed) return;
|
|
for(G4int i=0;i<3;i++)
|
|
{
|
|
if(serial)
|
|
{ calorPhysical[i]->SetTranslation(G4ThreeVector(0.,0.,G4double(i-1)*2.*m)); }
|
|
else
|
|
{ calorPhysical[i]->SetTranslation(G4ThreeVector(0.,G4double(i-1)*m,0.)); }
|
|
}
|
|
}
|
|
|