17 lines
251 B
C++
17 lines
251 B
C++
|
|
|
|
#include "Math/ContainerBox.h"
|
|
#include "Math/Dense.h"
|
|
#include "HEP/Geant/Scene.h"
|
|
|
|
using namespace uLib;
|
|
|
|
int main() {
|
|
|
|
uLib::Geant::Scene scene;
|
|
scene.ConstructWorldBox(Vector3f(100, 100, 100), "G4_AIR");
|
|
scene.Initialize();
|
|
|
|
return 0;
|
|
}
|