Back to home page

EIC code displayed by LXR

 
 

    


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

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 #ifndef G4RadioactiveDecayMode_h
0027 #define G4RadioactiveDecayMode_h 1
0028 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0029 //
0030 // MODULE:              RadioactiveDecayMode.hh
0031 //
0032 // Version:             0.b.4
0033 // Date:                14/04/00
0034 // Author:              F Lei & P R Truscott
0035 // Organisation:        DERA UK
0036 // Customer:            ESA/ESTEC, NOORDWIJK
0037 // Contract:            12115/96/JG/NL Work Order No. 3
0038 //
0039 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0040 //
0041 // DESCRIPTION
0042 // -----------
0043 //
0044 // Identifies a type G4RadioactiveDecayMode to assign a specific decay mode
0045 // description to decay channels.
0046 //
0047 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0048 //
0049 // CHANGE HISTORY
0050 // --------------
0051 //
0052 // 29 February 2000, P R Truscott, DERA UK
0053 // 0.b.3 release.
0054 //
0055 // 13 April 2000, F Lei, DERA UK
0056 // 0.b.4 release. No change to this file
0057 //
0058 // 13 October 2015 L.G Sarmiento included different decay modes in the enum
0059 //
0060 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0061 ////////////////////////////////////////////////////////////////////////////////
0062 //
0063 #include "globals.hh"
0064 ////////////////////////////////////////////////////////////////////////////////
0065 //
0066 enum G4RadioactiveDecayMode {
0067   RDM_ERROR=-1, IT=0, BetaMinus=1, BetaPlus=2, 
0068   KshellEC=3, LshellEC=4, MshellEC=5, NshellEC=6, 
0069   Alpha=7, Proton=8, Neutron=9, SpFission=10,
0070   BDProton=11, BDNeutron=12, Beta2Minus=13, Beta2Plus=14, 
0071   Proton2=15, Neutron2=16, Triton=17,
0072   G4RadioactiveDecayModeSize  // Note: the value G4RadioactiveDecayModeSize must remain the last one!
0073 }; 
0074 
0075 std::istream &operator >> (std::istream &s, G4RadioactiveDecayMode &q);
0076 
0077 ////////////////////////////////////////////////////////////////////////////////
0078 #endif
0079