#include <cstdlib>#include "TROOT.h"#include "JobControl/JobController.h"#include "JobControl/JobCEnv.h"Go to the source code of this file.
Functions | |
| TROOT | gsTROOT ("TROOT","TROOT") |
| int | main (int argc, char **argv) |
|
||||||||||||
|
|
|
||||||||||||
|
COMMAND LINE CALIB CONSTANTS BEAM RUN KEY Cerenkov ADC cuts: ATTENUATION PARAMS FILE + TREE Definition at line 16 of file test.cxx. References JobCEnv::GetMacroFile(), JobCEnv::Instance(), JobController::Run(), and JobCEnv::RunRootApp(). 00017 {
00018 JobCEnv& e = JobCEnv::Instance(argc, argv);
00019
00020 if (e.GetMacroFile(0)) {
00021 // Old style .jcm interface...
00022 JobController jobc(argc, argv);
00023 if (jobc.Run()) return EXIT_SUCCESS;
00024 return EXIT_FAILURE;
00025 }
00026
00027 // New style CINT interface
00028 if (e.RunRootApp()) return EXIT_SUCCESS;
00029 return EXIT_FAILURE;
00030 }
|
1.3.9.1