57 lines
2.2 KiB
C++
57 lines
2.2 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * 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. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
#ifndef G4_CASCADE_XIMINUSP_CHANNEL_HH
|
|
#define G4_CASCADE_XIMINUSP_CHANNEL_HH
|
|
|
|
#include "G4CascadeChannel.hh"
|
|
|
|
|
|
class G4CascadeXiMinusPChannel : public G4CascadeChannel {
|
|
|
|
public:
|
|
|
|
G4CascadeXiMinusPChannel();
|
|
virtual ~G4CascadeXiMinusPChannel();
|
|
|
|
G4double getCrossSection(G4double ke) const;
|
|
G4int getMultiplicity(G4double ke) const;
|
|
std::vector<G4int> getOutgoingParticleTypes(G4int mult, G4double ke) const;
|
|
|
|
private:
|
|
|
|
static G4double xmptot[31];
|
|
static G4double xmpMultiplicities[6][31];
|
|
|
|
static const G4int xmpindex[6][2];
|
|
static const G4int xmp2bfs[6][2];
|
|
static const G4int xmp3bfs[24][3];
|
|
static const G4int xmp4bfs[4][4];
|
|
static const G4int xmp5bfs[4][5];
|
|
static const G4int xmp6bfs[4][6];
|
|
static const G4int xmp7bfs[4][7];
|
|
|
|
static const G4float xmpCrossSections[46][31];
|
|
};
|
|
|
|
#endif
|