142 lines
5.8 KiB
C++
142 lines
5.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * 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. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: ExN03DetectorMessenger.cc,v 1.3.4.1 2001/06/28 19:07:33 gunter Exp $
|
|
// GEANT4 tag $Name: $
|
|
//
|
|
//
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#include "ExN03DetectorMessenger.hh"
|
|
|
|
#include "ExN03DetectorConstruction.hh"
|
|
#include "G4UIdirectory.hh"
|
|
#include "G4UIcmdWithAString.hh"
|
|
#include "G4UIcmdWithAnInteger.hh"
|
|
#include "G4UIcmdWithADoubleAndUnit.hh"
|
|
#include "G4UIcmdWithoutParameter.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
ExN03DetectorMessenger::ExN03DetectorMessenger(ExN03DetectorConstruction * ExN03Det)
|
|
:ExN03Detector(ExN03Det)
|
|
{
|
|
ExN03detDir = new G4UIdirectory("/calor/");
|
|
ExN03detDir->SetGuidance("ExN03 detector control.");
|
|
|
|
AbsMaterCmd = new G4UIcmdWithAString("/calor/setAbsMat",this);
|
|
AbsMaterCmd->SetGuidance("Select Material of the Absorber.");
|
|
AbsMaterCmd->SetParameterName("choice",false);
|
|
AbsMaterCmd->AvailableForStates(Idle);
|
|
|
|
GapMaterCmd = new G4UIcmdWithAString("/calor/setGapMat",this);
|
|
GapMaterCmd->SetGuidance("Select Material of the Gap.");
|
|
GapMaterCmd->SetParameterName("choice",false);
|
|
GapMaterCmd->AvailableForStates(Idle);
|
|
|
|
AbsThickCmd = new G4UIcmdWithADoubleAndUnit("/calor/setAbsThick",this);
|
|
AbsThickCmd->SetGuidance("Set Thickness of the Absorber");
|
|
AbsThickCmd->SetParameterName("Size",false);
|
|
AbsThickCmd->SetRange("Size>=0.");
|
|
AbsThickCmd->SetUnitCategory("Length");
|
|
AbsThickCmd->AvailableForStates(Idle);
|
|
|
|
GapThickCmd = new G4UIcmdWithADoubleAndUnit("/calor/setGapThick",this);
|
|
GapThickCmd->SetGuidance("Set Thickness of the Gap");
|
|
GapThickCmd->SetParameterName("Size",false);
|
|
GapThickCmd->SetRange("Size>=0.");
|
|
GapThickCmd->SetUnitCategory("Length");
|
|
GapThickCmd->AvailableForStates(Idle);
|
|
|
|
SizeYZCmd = new G4UIcmdWithADoubleAndUnit("/calor/setSizeYZ",this);
|
|
SizeYZCmd->SetGuidance("Set tranverse size of the calorimeter");
|
|
SizeYZCmd->SetParameterName("Size",false);
|
|
SizeYZCmd->SetRange("Size>0.");
|
|
SizeYZCmd->SetUnitCategory("Length");
|
|
SizeYZCmd->AvailableForStates(Idle);
|
|
|
|
NbLayersCmd = new G4UIcmdWithAnInteger("/calor/setNbOfLayers",this);
|
|
NbLayersCmd->SetGuidance("Set number of layers.");
|
|
NbLayersCmd->SetParameterName("NbLayers",false);
|
|
NbLayersCmd->SetRange("NbLayers>0 && NbLayers<500");
|
|
NbLayersCmd->AvailableForStates(Idle);
|
|
|
|
UpdateCmd = new G4UIcmdWithoutParameter("/calor/update",this);
|
|
UpdateCmd->SetGuidance("Update calorimeter geometry.");
|
|
UpdateCmd->SetGuidance("This command MUST be applied before \"beamOn\" ");
|
|
UpdateCmd->SetGuidance("if you changed geometrical value(s).");
|
|
UpdateCmd->AvailableForStates(Idle);
|
|
|
|
MagFieldCmd = new G4UIcmdWithADoubleAndUnit("/calor/setField",this);
|
|
MagFieldCmd->SetGuidance("Define magnetic field.");
|
|
MagFieldCmd->SetGuidance("Magnetic field will be in Z direction.");
|
|
MagFieldCmd->SetParameterName("Bz",false);
|
|
MagFieldCmd->SetUnitCategory("Magnetic flux density");
|
|
MagFieldCmd->AvailableForStates(Idle);
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
ExN03DetectorMessenger::~ExN03DetectorMessenger()
|
|
{
|
|
delete NbLayersCmd;
|
|
delete AbsMaterCmd; delete GapMaterCmd;
|
|
delete AbsThickCmd; delete GapThickCmd;
|
|
delete SizeYZCmd; delete UpdateCmd;
|
|
delete MagFieldCmd;
|
|
delete ExN03detDir;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void ExN03DetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue)
|
|
{
|
|
if( command == AbsMaterCmd )
|
|
{ ExN03Detector->SetAbsorberMaterial(newValue);}
|
|
|
|
if( command == GapMaterCmd )
|
|
{ ExN03Detector->SetGapMaterial(newValue);}
|
|
|
|
if( command == AbsThickCmd )
|
|
{ ExN03Detector->SetAbsorberThickness(AbsThickCmd->GetNewDoubleValue(newValue));}
|
|
|
|
if( command == GapThickCmd )
|
|
{ ExN03Detector->SetGapThickness(GapThickCmd->GetNewDoubleValue(newValue));}
|
|
|
|
if( command == SizeYZCmd )
|
|
{ ExN03Detector->SetCalorSizeYZ(SizeYZCmd->GetNewDoubleValue(newValue));}
|
|
|
|
if( command == NbLayersCmd )
|
|
{ ExN03Detector->SetNbOfLayers(NbLayersCmd->GetNewIntValue(newValue));}
|
|
|
|
if( command == UpdateCmd )
|
|
{ ExN03Detector->UpdateGeometry(); }
|
|
|
|
if( command == MagFieldCmd )
|
|
{ ExN03Detector->SetMagField(MagFieldCmd->GetNewDoubleValue(newValue));}
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|