output file

This commit is contained in:
Jan Kieseler
2023-10-13 09:09:02 +02:00
parent 69cc376c5f
commit 381aa6ea91
9 changed files with 42 additions and 9 deletions
+6 -3
View File
@@ -7,7 +7,7 @@
#include <string>
//#include "G4VPhysicalVolume.hh"
class G4VPhysicalVolume;
class G4System;
class Sensor{
public:
@@ -90,7 +90,7 @@ class GeometryDescriptor{
public:
GeometryDescriptor(double xy_width=50);
~GeometryDescriptor() {};
~GeometryDescriptor();
void addLayer(double thickness_cm, std::string material, bool isActive=true, int nx=1, int ny=-1);
@@ -134,10 +134,13 @@ public:
}
}
void setG4System(G4System* g4system){
this->g4system = g4system;
}
private:
double xywidth;
std::vector<Layer> layers;
G4System * g4system;
};
#endif