Skip to content
Snippets Groups Projects
Commit 8ccdc136 authored by Markus Frank's avatar Markus Frank
Browse files

Have a common representation for all unicode macros.

parent 696192a9
No related branches found
No related tags found
No related merge requests found
// $Id:$
//====================================================================
// AIDA Detector description implementation for LCD
//--------------------------------------------------------------------
//
// Generic ROOT based geometry display program
//
// Author : M.Frank
//
//====================================================================
// Framework include files
#include "DD4hep/LCDD.h"
// C/C++ include files
#include <iostream>
#include <cstdlib>
#include <vector>
#include <cerrno>
#include <string>
using namespace std;
using namespace DD4hep::Geometry;
int run_plugin(LCDD& lcdd, const char* name, int argc, char** argv) {
try {
lcdd.apply(name,argc,argv);
return 0;
}
catch(const exception& e) {
cout << e.what() << endl;
}
catch(...) {
cout << "UNKNOWN Exception" << endl;
}
::exit(EINVAL);
return EINVAL;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment