-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRunAction.cc
48 lines (32 loc) · 909 Bytes
/
RunAction.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include "G4ios.hh"
#include <iomanip>
#include "globals.hh"
#include "Randomize.hh"
#include "RunAction.hh"
#include "G4Run.hh"
#include "G4UImanager.hh"
#include "G4VVisManager.hh"
#include "G4VisAttributes.hh"
#include <fstream>
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include "globalvar.h"
using namespace std ;
// ----------------------------------------------------------------------------
RunAction::RunAction()
{
}
// ----------------------------------------------------------------------------
RunAction::~RunAction()
{
}
// ----------------------------------------------------------------------------
void RunAction::BeginOfRunAction(const G4Run* aRun)
{
G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl ;
}
// ----------------------------------------------------------------------------
void RunAction::EndOfRunAction(const G4Run*)
{
}