Files
minicalosim/include/ConstructionWrapper.hh
T
2023-09-08 14:33:33 +02:00

99 lines
2.0 KiB
C++

#ifndef CONSTRUCTIONWRAPPER_HH
#define CONSTRUCTIONWRAPPER_HH
#include "G4ThreeVector.hh"
#include <vector>
#include <string>
//#include "G4VPhysicalVolume.hh"
class G4VPhysicalVolume;
class Sensor{
public:
Sensor(){};
~Sensor(){};
const G4double getEnergy()const{
return energy;
}
G4ThreeVector getPos()const{
return position;
}
G4ThreeVector getSize()const{
return size;
}
G4ThreeVector position;
G4ThreeVector size;
mutable G4double energy;
};
class Layer{
public:
Layer();
~Layer(){};
void setThickness(double thickness_cm);
void setMaterial(std::string material);
void setNx(int nx);
void setNy(int ny);
void setIsActive(bool isActive);
void assignPhysicalVolume(G4VPhysicalVolume* physicalVolume);
double thickness;
double sens_xwidth;
double sens_ywidth;
std::string material;
int nx;
int ny;
bool isActive;
G4VPhysicalVolume* physicalVolume;
std::string name;
std::vector<Sensor> sensors;
};
class ConstructionWrapper{
public:
ConstructionWrapper(double xy_width=50);
~ConstructionWrapper() {};
void addLayer(double thickness_cm, std::string material, bool isActive=true, int nx=1, int ny=-1);
std::vector<Layer>& getLayers() ;
const std::vector<Layer>& getLayers() const;
double getXYWidth() const{
return xywidth;
}
void resetSensorEnergies()const;//energies are mutable
int getNSensors()const{
int n_sensors = 0;
for(const auto& layer: layers){
n_sensors += layer.sensors.size();
}
return n_sensors;
}
Layer* getLayerByVolume(G4VPhysicalVolume* volume);
const Layer* getLayerByVolume(G4VPhysicalVolume* volume)const;
Sensor* getSensorByVolume(G4VPhysicalVolume* volume);
const Sensor* getSensorByVolume(G4VPhysicalVolume* volume)const;
void printSensorEnergies()const;
private:
double xywidth;
std::vector<Layer> layers;
};
#endif