Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:58:21

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 G4HadParticleCodes_hh
0027 #define G4HadParticleCodes_hh
0028 
0029 enum
0030 {
0031   NeutronPC = 2112,
0032   ProtonPC = 2212,
0033   
0034   DeltamPC = 1114,
0035   Delta0PC = 2114,
0036   DeltapPC = 2214,
0037   DeltappPC = 2224,
0038   
0039   Dm_1600PC = 31114,
0040   D0_1600PC = 32114,
0041   Dp_1600PC = 32214,
0042   Dpp_1600PC = 32224,
0043   
0044   Dm_1620PC = 1112,
0045   D0_1620PC = 1212,
0046   Dp_1620PC = 2122,
0047   Dpp_1620PC = 2222,
0048   
0049   Dm_1700PC = 11114,
0050   D0_1700PC = 12114,
0051   Dp_1700PC = 12214,
0052   Dpp_1700PC = 12224,
0053   
0054   Dm_1900PC = 11112,
0055   D0_1900PC = 11212,
0056   Dp_1900PC = 12122,
0057   Dpp_1900PC = 12222,
0058 
0059   Dm_1905PC = 1116,
0060   D0_1905PC = 1216,
0061   Dp_1905PC = 2126,
0062   Dpp_1905PC = 2226,
0063 
0064   Dm_1910PC = 21112,
0065   D0_1910PC = 21212,
0066   Dp_1910PC = 22122,
0067   Dpp_1910PC = 22222,
0068 
0069   Dm_1920PC = 21114,
0070   D0_1920PC = 22114,
0071   Dp_1920PC = 22214,
0072   Dpp_1920PC = 22224,
0073 
0074   Dm_1930PC = 11116,
0075   D0_1930PC = 11216,
0076   Dp_1930PC = 12126,
0077   Dpp_1930PC = 12226,
0078 
0079   Dm_1950PC = 1118,
0080   D0_1950PC = 2118,
0081   Dp_1950PC = 2218,
0082   Dpp_1950PC = 2228,
0083 
0084   N1400pPC = 12212,
0085   N1400nPC = 12112,
0086   
0087   N1520pPC = 2124,
0088   N1520nPC = 1214,
0089 
0090   N1535pPC = 22212,
0091   N1535nPC = 22112,
0092 
0093   N1650pPC = 32212,
0094   N1650nPC = 32112,
0095 
0096   N1675pPC = 2216,
0097   N1675nPC = 2116,
0098 
0099   N1680pPC = 12216,
0100   N1680nPC = 12116,
0101 
0102   N1700pPC = 22124,
0103   N1700nPC = 21214,
0104 
0105   N1710pPC = 42212,
0106   N1710nPC = 42112,
0107 
0108   N1720pPC = 32124,
0109   N1720nPC = 31214,
0110 
0111   N1900pPC = 42124,
0112   N1900nPC = 41214,
0113 
0114   N1990pPC = 12218,
0115   N1990nPC = 12118,
0116 
0117   N2090pPC = 52214,
0118   N2090nPC = 52114,
0119 
0120   N2190pPC = 2128,
0121   N2190nPC = 1218,
0122 
0123   N2220pPC = 100002210,
0124   N2220nPC = 100002110,
0125 
0126   N2250pPC = 100012210,
0127   N2250nPC = 100012110
0128 
0129 };
0130 
0131 struct D1232
0132 {
0133   enum
0134   {
0135     Dm=DeltamPC,
0136     D0=Delta0PC,
0137     Dp=DeltapPC,
0138     Dpp=DeltappPC
0139   };
0140 };
0141 
0142 #endif