Skip to content
Snippets Groups Projects
Select Git revision
  • features/online
  • master default protected
  • 11-helicity-logging-levels
  • develop
  • v1.3-dev
  • v1.4.0
  • v1.3.1
  • v1.3.0
  • v2.0.0_dev
  • v1.2.0
  • v1.1.9
  • v1.1.8
  • v1.1.7
  • v1.1.6
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.0
  • v1.1.1
  • v1.0.0
  • v0.96
  • v0.95
  • hcana_podd_1.5.28
  • HitMaps
25 results

my_root_script.cxx

Blame
  • Whitney Armstrong's avatar
    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
    d8eaf61d
    History
    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 );
    }