Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:57:59

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 //
0027 //
0028 //---------------------------------------------------------------
0029 //
0030 // G4BOptnChangeCrossSection
0031 //
0032 // Class Description:
0033 //    A G4VBiasingOperation to change a process cross-section.
0034 //    
0035 //
0036 //---------------------------------------------------------------
0037 //   Initial version                         Nov. 2013 M. Verderi
0038 
0039 
0040 #ifndef G4BOptnChangeCrossSection_hh
0041 #define G4BOptnChangeCrossSection_hh 1
0042 
0043 #include "G4VBiasingOperation.hh"
0044 class G4InteractionLawPhysical;
0045 
0046 class G4BOptnChangeCrossSection : public G4VBiasingOperation {
0047 public:
0048   // -- Constructor :
0049   G4BOptnChangeCrossSection(G4String name);
0050   // -- destructor:
0051   virtual ~G4BOptnChangeCrossSection();
0052   
0053 public:
0054   // -- Methods from G4VBiasingOperation interface:
0055   // ----------------------------------------------
0056   // -- Used:
0057   virtual const G4VBiasingInteractionLaw* ProvideOccurenceBiasingInteractionLaw( const G4BiasingProcessInterface*,
0058                                          G4ForceCondition& proposeForceCondition );
0059   
0060   // -- Unused:
0061   virtual G4VParticleChange*   ApplyFinalStateBiasing( const G4BiasingProcessInterface*,
0062                                const G4Track*,
0063                                const G4Step*,
0064                                G4bool&          )  {return 0;}
0065   virtual G4double           DistanceToApplyOperation( const G4Track*,
0066                                G4double,
0067                                G4ForceCondition*)  {return DBL_MAX;}
0068   virtual G4VParticleChange* GenerateBiasingFinalState( const G4Track*,
0069                                 const G4Step*   )  {return 0;}
0070   
0071 public:
0072   // -- Additional methods, specific to this class:
0073   // ----------------------------------------------
0074   // -- return concrete type of interaction law:
0075   G4InteractionLawPhysical* GetBiasedExponentialLaw() {return fBiasedExponentialLaw;}
0076   // -- set biased cross-section:
0077   void     SetBiasedCrossSection(G4double xst, bool updateInteractionLength = false);
0078   G4double GetBiasedCrossSection() const;
0079   // -- Sample underneath distribution:
0080   void Sample();
0081   // -- Update for a made step, without resampling:
0082   void UpdateForStep( G4double stepLength );
0083   // -- set/get if interaction occured. 
0084   // -- Interaction flag turned off in "Sample()" method.
0085   G4bool GetInteractionOccured() const { return fInteractionOccured; }
0086   void   SetInteractionOccured() { fInteractionOccured = true; }
0087   
0088 
0089 
0090 private:
0091   G4InteractionLawPhysical* fBiasedExponentialLaw;
0092   G4bool                      fInteractionOccured;
0093 };
0094 
0095 #endif