101 lines
3.9 KiB
C++
101 lines
3.9 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 Abdel-Waged *
|
|
// * et al under contract (31-465) to the King Abdul-Aziz City for *
|
|
// * Science and Technology (KACST), the National Centre of *
|
|
// * Mathematics and Physics (NCMP), Saudi Arabia. *
|
|
// * *
|
|
// * 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. *
|
|
// ********************************************************************
|
|
//
|
|
/// \file G4UrQMD1_3Model.hh
|
|
/// \brief Definition of the G4UrQMD1_3Model class
|
|
|
|
#ifndef G4UrQMD1_3Model_hh
|
|
#define G4UrQMD1_3Model_hh
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
//
|
|
// MODULE: G4UrQMD1_3Model.hh
|
|
//
|
|
// Version: 0.B
|
|
// Date: 20/10/12
|
|
// Author: Kh. Abdel-Waged and Nuha Felemban
|
|
// Revised by: V.V. Uzhinskii
|
|
// SPONSERED BY
|
|
// Customer: KAUST/NCMP
|
|
// Contract: 31-465
|
|
//
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
//
|
|
// Class Description
|
|
//
|
|
//
|
|
// Class Description - End
|
|
//
|
|
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "G4FragmentVector.hh"
|
|
#include "G4IntraNucleiCascader.hh"
|
|
#include "G4KineticTrackVector.hh"
|
|
#include "G4Nucleon.hh"
|
|
#include "G4Nucleus.hh"
|
|
#include "G4ParticleChange.hh"
|
|
#include "G4ReactionProduct.hh"
|
|
#include "G4ReactionProductVector.hh"
|
|
#include "G4Track.hh"
|
|
#include "G4VIntraNuclearTransportModel.hh"
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
class G4UrQMD1_3Model : public G4VIntraNuclearTransportModel
|
|
{
|
|
public:
|
|
G4UrQMD1_3Model(const G4String& name = "UrQMD1_3");
|
|
|
|
virtual ~G4UrQMD1_3Model();
|
|
|
|
G4ReactionProductVector* Propagate(G4KineticTrackVector* theSecondaries,
|
|
G4V3DNucleus* theTarget);
|
|
|
|
virtual G4HadFinalState* ApplyYourself(const G4HadProjectile&, G4Nucleus&);
|
|
|
|
private:
|
|
G4bool operator==(G4UrQMD1_3Model& right);
|
|
G4bool operator!=(G4UrQMD1_3Model& right);
|
|
|
|
void InitialiseDataTables();
|
|
|
|
void WelcomeMessage() const;
|
|
|
|
G4int CurrentEvent;
|
|
G4int verbose;
|
|
|
|
G4HadFinalState theResult;
|
|
};
|
|
|
|
#endif
|