106 lines
3.4 KiB
C++
106 lines
3.4 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. *
|
|
// ********************************************************************
|
|
|
|
// ====================================================================
|
|
//
|
|
// HepMCG4PythiaInterface.hh
|
|
// $Id: HepMCG4PythiaInterface.hh,v 1.2 2002/11/19 10:25:08 murakami Exp $
|
|
//
|
|
// A generic interface class with Pythia event generator via HepMC.
|
|
//
|
|
// ====================================================================
|
|
#ifndef HEPMC_G4_PYTHIA_INTERFACE_H
|
|
#define HEPMC_G4_PYTHIA_INTERFACE_H
|
|
|
|
#include "HepMCG4Interface.hh"
|
|
#include "HepMC/IO_HEPEVT.h"
|
|
|
|
class HepMCG4PythiaMessenger;
|
|
|
|
class HepMCG4PythiaInterface : public HepMCG4Interface {
|
|
protected:
|
|
G4int verbose;
|
|
G4int mpylist;
|
|
HepMC::IO_HEPEVT hepevtio;
|
|
|
|
HepMCG4PythiaMessenger* messenger;
|
|
|
|
// In default, this is automatic conversion, Pythia->HEPEVT->HepMC,
|
|
// by HepMC utilities.
|
|
virtual HepMC::GenEvent* GenerateHepMCEvent();
|
|
|
|
public:
|
|
HepMCG4PythiaInterface();
|
|
~HepMCG4PythiaInterface();
|
|
|
|
// set/get methods
|
|
void SetVerboseLevel(G4int i);
|
|
G4int GetVerboseLevel() const;
|
|
|
|
void SetPylist(G4int i);
|
|
G4int GetPylist() const;
|
|
|
|
// call pyxxx
|
|
void CallPyinit(G4String frame, G4String beam, G4String target,
|
|
G4double win);
|
|
void CallPystat(G4int istat);
|
|
|
|
// random numbers operations
|
|
void SetRandomSeed(G4int iseed);
|
|
void CallPygive(G4String par);
|
|
void CallPyrget(G4int lun, G4int move);
|
|
void CallPyrset(G4int lun, G4int move);
|
|
void PrintRandomStatus(G4std::ostream& ostr=G4cout) const;
|
|
|
|
// setup user parameters (empty in default).
|
|
// Implement your parameters in a delived class if you want.
|
|
virtual void SetUserParameters();
|
|
|
|
virtual void Print() const;
|
|
};
|
|
|
|
// ====================================================================
|
|
// inline functions
|
|
// ====================================================================
|
|
|
|
inline void HepMCG4PythiaInterface::SetVerboseLevel(G4int i)
|
|
{
|
|
verbose= i;
|
|
}
|
|
|
|
inline G4int HepMCG4PythiaInterface::GetVerboseLevel() const
|
|
{
|
|
return verbose;
|
|
}
|
|
|
|
inline void HepMCG4PythiaInterface::SetPylist(G4int i)
|
|
{
|
|
mpylist= i;
|
|
}
|
|
|
|
inline G4int HepMCG4PythiaInterface::GetPylist() const
|
|
{
|
|
return mpylist;
|
|
}
|
|
|
|
#endif
|