103 lines
3.3 KiB
C++
103 lines
3.3 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. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: hepmcEx02.cc,v 1.2 2002/05/28 14:19:07 murakami Exp $
|
|
// GEANT4 tag $Name: geant4-05-00 $
|
|
//
|
|
//
|
|
// --------------------------------------------------------------
|
|
// GEANT 4 - example of HepMC-interface
|
|
//
|
|
// --------------------------------------------------------------
|
|
// Comments
|
|
//
|
|
//
|
|
// --------------------------------------------------------------
|
|
|
|
#include "G4RunManager.hh"
|
|
#include "G4UImanager.hh"
|
|
#include "G4UIterminal.hh"
|
|
#include "G4UItcsh.hh"
|
|
|
|
#include "H02DetectorConstruction.hh"
|
|
#include "H02PhysicsList.hh"
|
|
#include "H02PrimaryGeneratorAction.hh"
|
|
#include "H02EventAction.hh"
|
|
#include "H02SteppingAction.hh"
|
|
|
|
#ifdef G4VIS_USE
|
|
#include "H02VisManager.hh"
|
|
#endif
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
G4RunManager* runManager= new G4RunManager;
|
|
|
|
runManager-> SetUserInitialization(new H02DetectorConstruction);
|
|
runManager-> SetUserInitialization(new H02PhysicsList);
|
|
|
|
runManager-> Initialize();
|
|
|
|
runManager-> SetUserAction(new H02PrimaryGeneratorAction);
|
|
runManager-> SetUserAction(new H02EventAction);
|
|
runManager-> SetUserAction(new H02SteppingAction);
|
|
|
|
#ifdef G4VIS_USE
|
|
// initialize visualization package
|
|
G4VisManager* visManager= new H02VisManager;
|
|
visManager-> Initialize();
|
|
G4cout << G4endl;
|
|
#endif
|
|
|
|
if(argc==1) {
|
|
// G4UIterminal is a (dumb) terminal.
|
|
|
|
#ifdef QERAUOY
|
|
G4UItcsh* tcsh= new
|
|
G4UItcsh("[40;01;36mhepmcEx02[40;33m(%s)[40;32m[%/][00;30m:");
|
|
G4UIterminal* session= new G4UIterminal(tcsh);
|
|
tcsh-> SetLsColor(RED, GREEN);
|
|
#else
|
|
G4UItcsh* tcsh= new G4UItcsh("hepmcEx01(%s)[%/]:");
|
|
G4UIterminal* session= new G4UIterminal(tcsh);
|
|
#endif
|
|
session->SessionStart();
|
|
delete session;
|
|
|
|
} else {
|
|
G4UImanager* UImanager= G4UImanager::GetUIpointer();
|
|
G4String command= "/control/execute ";
|
|
G4String fileName= argv[1];
|
|
UImanager-> ApplyCommand(command+fileName);
|
|
}
|
|
|
|
#ifdef G4VIS_USE
|
|
delete visManager;
|
|
#endif
|
|
|
|
delete runManager;
|
|
|
|
return 0;
|
|
}
|
|
|