// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * 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. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // #ifndef G4SPBaryon_h #define G4SPBaryon_h #include "globals.hh" #include "G4Proton.hh" #include "G4Neutron.hh" #include "G4SigmaPlus.hh" #include "G4SigmaZero.hh" #include "G4SigmaMinus.hh" #include "G4XiMinus.hh" #include "G4XiZero.hh" #include "G4Lambda.hh" #include "G4OmegaMinus.hh" #include "G4AntiProton.hh" #include "G4AntiNeutron.hh" #include "G4AntiSigmaPlus.hh" #include "G4AntiSigmaZero.hh" #include "G4AntiSigmaMinus.hh" #include "G4AntiXiMinus.hh" #include "G4AntiXiZero.hh" #include "G4AntiLambda.hh" #include "G4AntiOmegaMinus.hh" #include "G4ParticleDefinition.hh" #include "G4SPPartonInfo.hh" #include #include "globals.hh" class G4SPBaryon { public: G4SPBaryon(G4Proton * aProton); G4SPBaryon(G4Neutron * aNeutron); G4SPBaryon(G4Lambda * aLambda); G4SPBaryon(G4SigmaPlus * aSigmaPlus); G4SPBaryon(G4SigmaZero * aSigmaZero); G4SPBaryon(G4SigmaMinus * aSigmaMinus); G4SPBaryon(G4XiMinus * aXiMinus); G4SPBaryon(G4XiZero * aXiZero); G4SPBaryon(G4OmegaMinus * anOmegaMinus); G4SPBaryon(G4AntiProton * aAntiProton); G4SPBaryon(G4AntiNeutron * aAntiNeutron); G4SPBaryon(G4AntiLambda * aAntiLambda); G4SPBaryon(G4AntiSigmaPlus * aAntiSigmaPlus); G4SPBaryon(G4AntiSigmaZero * aAntiSigmaZero); G4SPBaryon(G4AntiSigmaMinus * aAntiSigmaMinus); G4SPBaryon(G4AntiXiMinus * aAntiXiMinus); G4SPBaryon(G4AntiXiZero * aAntiXiZero); G4SPBaryon(G4AntiOmegaMinus * anAntiOmegaMinus); G4SPBaryon(G4ParticleDefinition * aDefinition); ~G4SPBaryon() { for(unsigned int i=0;i thePartonInfo; }; #endif