1 |
formato |
1.1 |
// $Id: flukaConfig.C,v 1.5 2009-06-12 18:39:12 pam-rm2 Exp $ |
2 |
|
|
|
3 |
|
|
//------------------------------------------------ |
4 |
|
|
// The Virtual Monte Carlo examples |
5 |
|
|
// Copyright (C) 2007, 2008 Ivana Hrivnacova |
6 |
|
|
// All rights reserved. |
7 |
|
|
// |
8 |
|
|
// For the licensing terms see geant4_vmc/LICENSE. |
9 |
|
|
// Contact: vmc@pcroot.cern.ch |
10 |
|
|
//------------------------------------------------- |
11 |
|
|
|
12 |
|
|
/// \ingroup E01 |
13 |
|
|
/// \file E01/flConfig.C |
14 |
|
|
/// \brief Configuration macro for Fluka VMC for Example01 |
15 |
|
|
|
16 |
|
|
void Config() |
17 |
|
|
{ |
18 |
|
|
/// The configuration function for Fluka VMC for Example01 |
19 |
|
|
/// called during MC application initialization. |
20 |
|
|
|
21 |
|
|
new TFluka("C++ Interface to Fluka", 4/*verbositylevel*/); |
22 |
|
|
|
23 |
|
|
cout << "Fluka has been created." << endl; |
24 |
|
|
} |
25 |
|
|
|
26 |
|
|
|