G4EmProcessOptions.hh

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 // $Id$
00027 //
00028 //
00029 // -------------------------------------------------------------------
00030 //
00031 // GEANT4 Class header file
00032 //
00033 //
00034 // File name:     G4EmProcessOptions
00035 //
00036 // Author:        Vladimir Ivanchenko
00037 //
00038 // Creation date: 27.02.2004
00039 //
00040 // Modifications:
00041 // 10-01-06 PreciseRange -> CSDARange (V.Ivantchenko)
00042 // 22-05-06 Add SetBremsstrahlungTh (V.Ivanchenko)
00043 // 12-02-07 Add SetSkin, SetLinearLossLimit (V.Ivanchenko)
00044 //
00045 //
00046 // Class Description:
00047 //
00048 // Provide options for EM processes
00049 
00050 // -------------------------------------------------------------------
00051 //
00052 
00053 #ifndef G4EmProcessOptions_h
00054 #define G4EmProcessOptions_h 1
00055 
00056 #include <vector>
00057 #include "globals.hh"
00058 #include "G4MscStepLimitType.hh"
00059 
00060 class G4LossTableManager;
00061 class G4Region;
00062 
00063 class G4EmProcessOptions
00064 {
00065 
00066 public:
00067 
00068   G4EmProcessOptions();
00069 
00070   ~G4EmProcessOptions();
00071 
00072   void SetLossFluctuations(G4bool val);
00073 
00074   void SetSubCutoff(G4bool val, const G4Region* r=0);
00075 
00076   void SetIntegral(G4bool val);
00077 
00078   void SetMinSubRange(G4double val);
00079 
00080   void SetMinEnergy(G4double val);
00081 
00082   void SetMaxEnergy(G4double val);
00083 
00084   void SetMaxEnergyForCSDARange(G4double val);
00085 
00086   void SetMaxEnergyForMuons(G4double val);
00087 
00088   void SetDEDXBinning(G4int val);
00089 
00090   void SetDEDXBinningForCSDARange(G4int val);
00091 
00092   void SetLambdaBinning(G4int val);
00093 
00094   void SetStepFunction(G4double v1, G4double v2);
00095 
00096   void SetRandomStep(G4bool val);
00097 
00098   void SetApplyCuts(G4bool val);
00099 
00100   void SetBuildCSDARange(G4bool val);
00101 
00102   void SetVerbose(G4int val, const G4String& name = "all");
00103 
00104   void SetLambdaFactor(G4double val);
00105 
00106   void SetLinearLossLimit(G4double val);
00107 
00108   void SetDeexcitationActiveRegion(const G4String& rname = "", 
00109                                    G4bool valDeexcitation = true,
00110                                    G4bool valAuger = true,
00111                                    G4bool valPIXE = true);
00112 
00113   void SetFluo(G4bool val);
00114 
00115   void SetAuger(G4bool val);
00116 
00117   void SetPIXE(G4bool val);
00118 
00119   void SetPIXECrossSectionModel(const G4String& val);
00120 
00121   void SetPIXEElectronCrossSectionModel(const G4String& val);
00122 
00123   void SetMscStepLimitation(G4MscStepLimitType val);
00124 
00125   void SetMscLateralDisplacement(G4bool val);
00126 
00127   void SetSkin(G4double val);
00128 
00129   void SetMscRangeFactor(G4double val);
00130 
00131   void SetMscGeomFactor(G4double val);
00132 
00133   void SetLPMFlag(G4bool val);
00134 
00135   void SetSplineFlag(G4bool val);
00136 
00137   void SetBremsstrahlungTh(G4double val);
00138 
00139   void SetPolarAngleLimit(G4double val);
00140 
00141   void SetFactorForAngleLimit(G4double val);
00142 
00143   void SetProcessBiasingFactor(const G4String& name, G4double val, 
00144                                G4bool flag = true);
00145 
00146   void ActivateForcedInteraction(const G4String& name, G4double length=0.0, 
00147                                  const G4String& region="",
00148                                  G4bool flag = true);
00149 
00150   void ActivateSecondaryBiasing(const G4String& name, const G4String& region, 
00151                                 G4double factor, G4double energyLimit);
00152 
00153   void ActivateSecondaryBiasingForGamma(const G4String& name, const G4String& region, 
00154                                 G4double factor, G4double energyLimit);
00155 
00156 private:
00157 
00158   G4EmProcessOptions & operator=(const  G4EmProcessOptions &right);
00159   G4EmProcessOptions(const  G4EmProcessOptions&);
00160 
00161   G4LossTableManager* theManager;
00162 
00163 };
00164 
00165 //....oooOO0OOooo.......oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
00166 
00167 #endif

Generated on Mon May 27 17:48:09 2013 for Geant4 by  doxygen 1.4.7