forked from OpenGATE/Gate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gate.cc
435 lines (377 loc) · 14.3 KB
/
Gate.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
/*
* \file Gate.cc
* \author Didier Benoit <[email protected]>
* \date May 2012, QIM IMNC-IN2P3/CNRS, Paris VII-XI Universities, Orsay
* \version 2.0
* \brief To launch GATE:
* - 'Gate' or 'Gate --qt' using the Qt visualization
* - 'Gate your_macro.mac' or 'Gate --qt your_macro.mac' using the Qt visualization
* - 'Gate -d your_macro.mac' using the DigiGate
* - 'Gate -a [activity,10]' using the parameterized macro creating an alias in your macro
*/
#include "G4PhysicalConstants.hh"
#include "G4SystemOfUnits.hh"
#include <getopt.h>
#include <cstdlib>
#include <queue>
#include <locale.h>
#include "G4UImanager.hh"
#include "G4UIterminal.hh"
#include "GateUIterminal.hh"
#include "G4UItcsh.hh"
#include "GateRunManager.hh"
#include "GateMessageManager.hh"
#include "GateSteppingVerbose.hh"
#include "GateRandomEngine.hh"
#include "GateApplicationMgr.hh"
#include "GateSourceMgr.hh"
#include "GateSignalHandler.hh"
#include "GateDetectorConstruction.hh"
#include "GatePhysicsList.hh"
#include "GateConfiguration.h"
#include "GateSignalHandler.hh"
#include "GateOutputMgr.hh"
#include "GatePrimaryGeneratorAction.hh"
#include "GateUserActions.hh"
#include "GateDigitizer.hh"
#include "GateClock.hh"
#include "GateUIcontrolMessenger.hh"
#ifdef G4ANALYSIS_USE_ROOT
#include "TPluginManager.h"
#include "GateHitFileReader.hh"
#endif
#ifdef G4VIS_USE
#include "G4VisExecutive.hh"
#endif
#ifdef G4UI_USE
#include "G4UIExecutive.hh"
#ifdef G4UI_USE_QT
#include "qglobal.h"
#if (QT_VERSION >= QT_VERSION_CHECK(4, 0, 0))
#include <G4UIQt.hh>
#include <qmainwindow.h>
#endif
#endif
#endif
//-----------------------------------------------------------------------------
void printHelpAndQuit( G4String msg )
{
GateMessage( "Core", 0, msg << G4endl );
GateMessage( "Core", 0, "Usage: Gate [OPTION]... MACRO_FILE" << G4endl );
GateMessage( "Core", 0, G4endl);
GateMessage( "Core", 0, "Mandatory arguments to long options are mandatory for short options too." << G4endl );
GateMessage( "Core", 0, " -h, --help print the help" << G4endl );
GateMessage( "Core", 0, " -v, --version print the version" << G4endl );
GateMessage( "Core", 0, " -a, --param set alias. format is '[alias1,value1] [alias2,value2] ...'" << G4endl );
GateMessage( "Core", 0, " --d use the DigiMode" << G4endl );
GateMessage( "Core", 0, " --qt use the Qt visualization mode" << G4endl );
exit( EXIT_FAILURE );
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
std::queue < G4String > decodeParameters( G4String listOfParameters )
{
// Command queue storing the '/control/alias ALIAS VALUE' command line
std::queue < G4String > commandQueue;
// Find the first '[' position and ']' position
size_t foundBracket1; // '['
size_t foundBracket2; // ']'
size_t foundComma; // ','
foundBracket1 = listOfParameters.find_first_of( "[" );
foundBracket2 = listOfParameters.find_first_of( "]" );
foundComma = listOfParameters.find_first_of( "," );
while( foundBracket1 != G4String::npos )
{
// Getting alias
G4String alias = listOfParameters.substr( foundBracket1 + 1, foundComma - foundBracket1 - 1 );
// Getting value
G4String value = listOfParameters.substr( foundComma + 1, foundBracket2 - foundComma - 1 );
// Creating alias command and store it
G4String newAliasCommand = G4String( "/control/alias " ) + alias + G4String( " " ) + value;
commandQueue.push( newAliasCommand );
// Fetching other bounds []
foundBracket1 = listOfParameters.find_first_of( "[", foundBracket1 + 1 );
foundBracket2 = listOfParameters.find_first_of( "]", foundBracket2 + 1 );
foundComma = listOfParameters.find_first_of( ",", foundComma + 1 );
}
return commandQueue;
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
#ifndef G4ANALYSIS_USE_ROOT
void abortIfRootNotFound()
{
G4cerr << G4endl
<< "Sorry, but it seems that GATE was compiled without the ROOT option." << G4endl
<< "Consequently, you can not run GATE in DigiGate mode, and the execution will abort." << G4endl
<< G4endl
<< "There maybe several reasons why GATE was compiled without the ROOT option:" << G4endl
<< G4endl
<< "1) ROOT is not installed on your system;" << G4endl
<< "2) You did not source a GATE configuration script before compiling GATE;" << G4endl
<< "3) The configuration script you used has been modified to disable the ROOT option;" << G4endl
<< "4) You used the configuration file 'env_gate.csh' but it did not set the ROOT option." << G4endl
<< G4endl
<< "Here is what you can do:" << G4endl
<< G4endl
<< "1) I'm sorry but you won't have access to DigiGate, as it needs ROOT to work." << G4endl
<< " We apologize for this inconvenience, but there is nothing we can do about it," << G4endl
<< " because DigiGate works by re-reading a ROOT hit-file" << G4endl
<< G4endl;
G4Exception( "Gate.cc AbortIfRootNotFound", "AbortIfRootNotFound", FatalException, "Correct problem then try again... Sorry!" );
}
#endif
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
void executeCommandQueue( std::queue< G4String > commandQueue, G4UImanager* UImanager )
{
while( commandQueue.size() )
{
G4cout << commandQueue.front() << G4endl;
UImanager->ApplyCommand( commandQueue.front() );
commandQueue.pop();
}
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
void welcome()
{
GateMessage("Core", 0, G4endl);
GateMessage("Core", 0, "*************************************************" << G4endl);
GateMessage("Core", 0, " GATE version 9.0 (March 2020)" << G4endl);
GateMessage("Core", 0, " Copyright : OpenGATE Collaboration" << G4endl);
GateMessage("Core", 0, " Reference : Phys. Med. Biol. 49 (2004) 4543-4561" << G4endl);
GateMessage("Core", 0, " Reference : Phys. Med. Biol. 56 (2011) 881-901" << G4endl);
GateMessage("Core", 0, " Reference : Med. Phys. 41(6) (2014)" << G4endl);
GateMessage("Core", 0, " http://www.opengatecollaboration.org " << G4endl);
GateMessage("Core", 0, "*************************************************" << G4endl);
#ifdef GATE_USE_GPU
GateMessage("Core", 0, "GPU support activated" << G4endl );
#endif
GateMessage("Core", 0, G4endl);
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
int main( int argc, char* argv[] )
{
// First of all, set the G4cout to our message manager
GateMessageManager* theGateMessageManager = GateMessageManager::GetInstance();
G4UImanager::GetUIpointer()->SetCoutDestination( theGateMessageManager );
#ifdef G4ANALYSIS_USE_ROOT
// "Magic" line to avoid problem with ROOT plugin. It is useful when
// compiling Gate on a given system and executing it remotely on
// another (grid or cluster). See
// http://root.cern.ch/root/roottalk/roottalk08/0690.html
// DS.
gROOT->GetPluginManager()->AddHandler( "TVirtualStreamerInfo", "*", "TStreamerInfo", "RIO", "TStreamerInfo()" );
#endif
GateSteppingVerbose* verbosity = new GateSteppingVerbose;
G4VSteppingVerbose::SetInstance( verbosity );
// random engine
GateRandomEngine* randomEngine = GateRandomEngine::GetInstance();
// analyzing arguments
static G4int isDigiMode = 0; // DigiMode false by default
static G4int isQt = 0; // Enable Qt or not
G4String listOfParameters = ""; // List of parameters for parameterized macro
DigiMode aDigiMode = kruntimeMode;
// Loop over arguments
G4int c = 0;
while( 1 )
{
// Declaring options
G4int optionIndex = 0;
static struct option longOptions[] = {
{ "help", no_argument, 0, 'h' },
{ "version", no_argument, 0, 'v' },
{ "d", no_argument, &isDigiMode, 1 },
{ "qt", no_argument, &isQt, 1 },
{ "param", required_argument, 0, 'a' }
};
#ifdef __APPLE__
/*
* If the program was started by double-clicking on the application bundle on Mac OS X
* rather than from the command-line, enable Qt and don't try to process other options;
* argv[1] contains a process serial number in the form -psn_0_1234567
* OS X <= 10.8 have a -psn_XXX argument given by the system
* OS X >= 10.9 does not have one, so we use the "TERM" environment variable
* to distinguish between launched by the Terminal or by the system.
*/
if ( (argc>1 && strncmp( argv[1], "-psn", 4 ) == 0) || getenv("TERM") == NULL ) {
argc = 1;
isQt = 1;
break;
}
else
#endif
{
// Getting the option
c = getopt_long( argc, argv, "hva:", longOptions, &optionIndex );
}
// Exit the loop if -1
if( c == -1 ) break;
// Analyzing each option
std::ostringstream ss;
switch( c )
{
case 0:
// If this option set a flag, do nothing else now
if( longOptions[ optionIndex ].flag != 0 ) break;
break;
case 'h':
printHelpAndQuit("Gate command line help" );
break;
case 'v':
ss << G4VERSION_MAJOR << "." << G4VERSION_MINOR << "." << G4VERSION_PATCH;
std::cout << "Gate version is 9.0 ; Geant4 version is " << ss.str() << std::endl;
exit(0);
break;
case 'a':
listOfParameters = optarg;
break;
default:
printHelpAndQuit( "Out of switch options" );
break;
}
}
// Checking if the DigiMode is activated
if( isDigiMode )
aDigiMode = kofflineMode;
// Analyzing parameterized macro
std::queue< G4String > commandQueue = decodeParameters( listOfParameters );
// Install the signal handler to handle interrupt calls
GateSignalHandler::Install();
// Construct the default run manager
GateRunManager* runManager = new GateRunManager;
// Set the DetectorConstruction
GateDetectorConstruction* gateDC = new GateDetectorConstruction();
runManager->SetUserInitialization( gateDC );
// Set the PhysicsList
runManager->SetUserInitialization( GatePhysicsList::GetInstance() );
// Set the users actions to handle callback for actors - before the initialisation
new GateUserActions( runManager);
// Set the Visualization Manager
#ifdef G4VIS_USE
theGateMessageManager->EnableG4Messages( false );
G4VisManager* visManager = new G4VisExecutive;
visManager->Initialize();
theGateMessageManager->EnableG4Messages( true );
#endif
// Initialize G4 kernel
runManager->InitializeAll();
// Incorporate the user actions, set the particles generator
runManager->SetUserAction( new GatePrimaryGeneratorAction() );
// Create various singleton objets
#ifdef G4ANALYSIS_USE_GENERAL
GateOutputMgr::SetDigiMode( aDigiMode );
GateOutputMgr* outputMgr = GateOutputMgr::GetInstance();
GateDigitizer* digitizer = GateDigitizer::GetInstance();
GatePulseProcessorChain* singleChain = new GatePulseProcessorChain( digitizer, "Singles" );
digitizer->StoreNewPulseProcessorChain( singleChain );
#endif
if( aDigiMode == kofflineMode )
#ifdef G4ANALYSIS_USE_ROOT
GateHitFileReader::GetInstance();
#else
abortIfRootNotFound();
#endif
GateSourceMgr* sourceMgr = GateSourceMgr::GetInstance();
GateApplicationMgr* appMgr = GateApplicationMgr::GetInstance();
GateClock::GetInstance()->SetTime( 0 );
GateUIcontrolMessenger* controlMessenger = new GateUIcontrolMessenger;
// Get the pointer to the User Interface manager
G4UImanager* UImanager = G4UImanager::GetUIpointer();
// Declaring pointers
#ifdef G4UI_USE
G4UIExecutive* ui = NULL;
#endif
G4UIsession* session = NULL;
if( isQt )
{
#ifdef G4UI_USE
#ifdef G4UI_USE_QT
#if (QT_VERSION >= QT_VERSION_CHECK(4, 0, 0))
ui = new G4UIExecutive( argc, argv );
G4UIQt* qui = static_cast<G4UIQt*> (UImanager->GetG4UIWindow());
if (qui) {
qui->GetMainWindow()->setVisible(true);
}
#endif
#endif
#else
#ifdef G4UI_USE_TCSH
session = new GateUIterminal( new G4UItcsh );
#else
session = new GateUIterminal();
#endif
#endif
#ifndef _WIN32
setlocale(LC_NUMERIC, "POSIX");
#endif
}
else
{
#ifdef G4UI_USE_TCSH
session = new GateUIterminal( new G4UItcsh );
#else
session = new GateUIterminal();
#endif
}
// Macro file parameters
G4int isMacroFile = 0;
G4String macrofilename = "";
// Checking if macro file is here
// macrofilename always the last arguments, check if '.mac' is in the string
G4String lastArgument = argv[ argc - 1 ];
// Finding a point in 'lastArgument'
size_t foundPoint = lastArgument.find_last_of( "." );
// Finding suffix
G4String suffix = "";
if( foundPoint != G4String::npos )
suffix = lastArgument.substr( foundPoint + 1 );
if( suffix == "mac" )
{
isMacroFile = 1;
macrofilename = lastArgument;
}
// Using 'session' if not Qt
welcome();
std::ostringstream s;
s << G4VERSION_MAJOR << "." << G4VERSION_MINOR << "." << G4VERSION_PATCH;
GateMessage( "Core", 0, "You are using Geant4 version " << s.str() << G4endl );
// Launching Gate if macro file
if (isMacroFile) {
executeCommandQueue( commandQueue, UImanager );
GateMessage( "Core", 0, "Starting macro " << macrofilename << G4endl);
G4String command = "/control/execute ";
UImanager->ApplyCommand( command + macrofilename );
GateMessage( "Core", 0, "End of macro " << macrofilename << G4endl);
}
#ifdef G4UI_USE
if (ui) // Launching interactive mode // Qt
{
ui->SessionStart();
delete ui;
}
else
#endif
{
if (session && !isMacroFile) { // Terminal
session->SessionStart();
delete session;
}
}
#ifdef G4ANALYSIS_USE_GENERAL
if (outputMgr) delete outputMgr;
#endif
#ifdef G4VIS_USE
delete visManager;
#endif
delete sourceMgr;
delete appMgr;
delete randomEngine;
delete controlMessenger;
delete verbosity;
delete runManager;
return 0;
}
//-----------------------------------------------------------------------------