102 lines
4.2 KiB
C++
102 lines
4.2 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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. *
|
|
// * *
|
|
// * Parts of this code which have been developed by QinetiQ Ltd *
|
|
// * under contract to the European Space Agency (ESA) are the *
|
|
// * intellectual property of ESA. Rights to use, copy, modify and *
|
|
// * redistribute this software for general public use are granted *
|
|
// * in compliance with any licensing, distribution and development *
|
|
// * policy adopted by the Geant4 Collaboration. This code has been *
|
|
// * written by QinetiQ Ltd for the European Space Agency, under ESA *
|
|
// * contract 17191/03/NL/LvH (Aurora Programme). *
|
|
// * *
|
|
// * 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 G4EMDissociation_h
|
|
#define G4EMDissociation_h
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
//
|
|
// MODULE: G4EMDissociation.hh
|
|
//
|
|
// Version: B.1
|
|
// Date: 15/04/04
|
|
// Author: P R Truscott
|
|
// Organisation: QinetiQ Ltd, UK
|
|
// Customer: ESA/ESTEC, NOORDWIJK
|
|
// Contract: 17191/03/NL/LvH
|
|
//
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
//
|
|
// CHANGE HISTORY
|
|
// --------------
|
|
//
|
|
// 17 October 2003, P R Truscott, QinetiQ Ltd, UK
|
|
// Created.
|
|
//
|
|
// 15 March 2004, P R Truscott, QinetiQ Ltd, UK
|
|
// Beta release
|
|
//
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
//
|
|
// Class Description
|
|
//
|
|
//
|
|
// Class Description - End
|
|
//
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
#include "G4HadronicInteraction.hh"
|
|
#include "G4ExcitationHandler.hh"
|
|
#include "G4HadProjectile.hh"
|
|
#include "G4Nucleus.hh"
|
|
#include "G4EMDissociationCrossSection.hh"
|
|
#include "G4EMDissociationSpectrum.hh"
|
|
#include "globals.hh"
|
|
|
|
|
|
class G4EMDissociation : public G4HadronicInteraction
|
|
{
|
|
public:
|
|
G4EMDissociation();
|
|
G4EMDissociation (G4ExcitationHandler *);
|
|
~G4EMDissociation ();
|
|
|
|
G4EMDissociation(const G4EMDissociation& emd) = delete;
|
|
const G4EMDissociation& operator=(G4EMDissociation &right) = delete;
|
|
|
|
virtual G4HadFinalState* ApplyYourself(const G4HadProjectile&, G4Nucleus&);
|
|
|
|
private:
|
|
void PrintWelcomeMessage();
|
|
|
|
private:
|
|
G4ExcitationHandler* theExcitationHandler;
|
|
G4bool handlerDefinedInternally;
|
|
G4EMDissociationCrossSection* dissociationCrossSection;
|
|
G4EMDissociationSpectrum* thePhotonSpectrum;
|
|
G4int secID_projectileDissociation; // Creator model ID for the secondaries created by projectile dissociation
|
|
G4int secID_targetDissociation; // Creator model ID for the secondaries created by target dissociation
|
|
};
|
|
#endif
|