Forked from
jlab / hallc / analyzer_software / hcana
74 commits behind the upstream repository.
-
Whitney Armstrong authored
modified: tests/elastic_test.sh new file: tests/elastic_test2.sh modified: tests/my_root_script.cxx new file: tests/replay_elastic_data.sh
Whitney Armstrong authoredmodified: tests/elastic_test.sh new file: tests/elastic_test2.sh modified: tests/my_root_script.cxx new file: tests/replay_elastic_data.sh
my_root_script.cxx 366 B
void my_root_script() {
std::cout << "Hello from my_root_script.cxx!\n";
std::cout << "This should be run with singularity\n";
double pi = 3.14;
auto pi_equals_3 = (3 == pi);
std::cout << " pi_equals_3 = " << pi_equals_3 << "\n";
if( pi_equals_3) {
std::cout << "what the hell?\n";
std::exit( 0 );
}
/* else */
std::exit( -1 );
}