source: trunk/examples/extended/eventgenerator/HepMC/HepMCEx01/src/HepMCG4PythiaInterface.cc @ 1358

Last change on this file since 1358 was 807, checked in by garnier, 16 years ago

update

File size: 5.7 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26// ====================================================================
27//
28//   HepMCG4PythiaInterface.cc
29//   $Id: HepMCG4PythiaInterface.cc,v 1.5 2006/07/05 11:06:36 gcosmo Exp $
30//
31// ====================================================================
32
33#ifdef G4LIB_USE_PYTHIA
34
35#include "HepMCG4PythiaInterface.hh"
36#include "HepMCG4PythiaMessenger.hh"
37
38#include "HepMC/GenEvent.h"
39#include "HepMC/PythiaWrapper6_152.h"
40
41// additional pythia calls
42#define pygive pygive_
43#define pyrget pyrget_
44#define pyrset pyrset_
45
46extern "C" {
47  void pygive(const char*, int);
48  void pyrget(int*, int*);
49  void pyrset(int*, int*);
50}
51
52void call_pygive(G4String s) { pygive(s.c_str(), s.length()); }
53void call_pyrget(int a, int b) { pyrget(&a, &b); }
54void call_pyrset(int a, int b) { pyrset(&a, &b); }
55
56////////////////////////////////////////////////
57HepMCG4PythiaInterface::HepMCG4PythiaInterface()
58  : verbose(0), mpylist(0)
59////////////////////////////////////////////////
60{
61#ifdef NEED_INITPYDATA 
62  initpydata();
63  // Some platforms may require the initialization of pythia PYDATA block
64  // data as external - if you get pythia initialization errors try
65  // commenting in/out the below call to initpydata().
66#endif
67
68  messenger= new HepMCG4PythiaMessenger(this);
69}
70
71/////////////////////////////////////////////////
72HepMCG4PythiaInterface::~HepMCG4PythiaInterface()
73/////////////////////////////////////////////////
74{
75  delete messenger;
76}
77
78/////////////////////////////////////////////////////
79void HepMCG4PythiaInterface::CallPygive(G4String par)
80/////////////////////////////////////////////////////
81{
82  call_pygive(par);
83}
84
85//////////////////////////////////////////////////////////////////////
86void HepMCG4PythiaInterface::CallPyinit(G4String frame, G4String beam, 
87                                        G4String target, G4double win)
88//////////////////////////////////////////////////////////////////////
89{
90  call_pyinit(frame.c_str(), beam.c_str(), target.c_str(), win);
91}
92
93////////////////////////////////////////////////////
94void HepMCG4PythiaInterface::CallPystat(G4int istat)
95////////////////////////////////////////////////////
96{
97  call_pystat(istat);
98}
99
100///////////////////////////////////////////////////////
101void HepMCG4PythiaInterface::SetRandomSeed(G4int iseed)
102///////////////////////////////////////////////////////
103{
104  pydatr.mrpy[1-1]= iseed;
105}
106
107//////////////////////////////////////////////////////////////
108void HepMCG4PythiaInterface::CallPyrget(G4int lun, G4int move)
109//////////////////////////////////////////////////////////////
110{
111  call_pyrget(lun, move);
112}
113
114//////////////////////////////////////////////////////////////
115void HepMCG4PythiaInterface::CallPyrset(G4int lun, G4int move)
116//////////////////////////////////////////////////////////////
117{
118  call_pyrset(lun, move);
119}
120
121//////////////////////////////////////////////////////////////////////////
122void HepMCG4PythiaInterface::PrintRandomStatus(std::ostream& ostr) const
123//////////////////////////////////////////////////////////////////////////
124{
125  ostr << "# Pythia random numbers status" << G4endl;
126  for (G4int j=0; j<6; j++) {
127    ostr << "pydatr.mrpy[" << j << "]= " << pydatr.mrpy[j] << G4endl;
128  }
129  for (G4int k=0; k<100; k++) {
130    ostr << "pydatr.rrpy[" << k << "]= " << pydatr.rrpy[k] << G4endl;
131  }
132}
133
134////////////////////////////////////////////////
135void HepMCG4PythiaInterface::SetUserParameters()
136////////////////////////////////////////////////
137{
138  G4cout << "set user parameters of PYTHIA common." << G4endl
139         << "nothing to be done in default."
140         << G4endl;
141}
142
143/////////////////////////////////////////////////////////////
144HepMC::GenEvent* HepMCG4PythiaInterface::GenerateHepMCEvent()
145/////////////////////////////////////////////////////////////
146{
147  static G4int nevent= 0; // event counter
148
149  call_pyevnt(); // generate one event with Pythia
150  if(mpylist >=1 && mpylist<= 3) call_pylist(mpylist);
151 
152  call_pyhepc(1);
153
154  HepMC::GenEvent* evt= hepevtio.read_next_event();
155  evt-> set_event_number(nevent++);
156  if(verbose>0) evt-> print();
157
158  return evt;
159}
160
161//////////////////////////////////////////
162void HepMCG4PythiaInterface::Print() const
163//////////////////////////////////////////
164{
165  G4cout << "PythiaInterface::Print()..." << G4endl;
166}
167
168#endif
Note: See TracBrowser for help on using the repository browser.