mirror of
https://github.com/gwm17/Mask.git
synced 2025-04-02 23:18:50 -04:00
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
#ifndef SABRE_ARRAY_H
|
|
#define SABRE_ARRAY_H
|
|
|
|
#include "DetectorArray.h"
|
|
#include "SabreDetector.h"
|
|
#include "Mask/Target.h"
|
|
#include "SabreDeadChannelMap.h"
|
|
#include "Mask/Nucleus.h"
|
|
|
|
class SabreArray : public DetectorArray
|
|
{
|
|
public:
|
|
SabreArray();
|
|
~SabreArray();
|
|
virtual void SetDeadChannelMap(const std::string& filename) override { m_deadMap.LoadMapfile(filename); };
|
|
virtual DetectorResult IsDetected(const Mask::Nucleus& nucleus) override;
|
|
void DrawDetectorSystem(const std::string& filename) override;
|
|
double RunConsistencyCheck() override;
|
|
|
|
private:
|
|
|
|
std::vector<SabreDetector> m_detectors;
|
|
|
|
Mask::Target m_deadlayerEloss;
|
|
Mask::Target m_detectorEloss;
|
|
Mask::Target m_degraderEloss;
|
|
SabreDeadChannelMap m_deadMap;
|
|
|
|
bool m_activeDetectors[5];
|
|
bool m_degradedDetectors[5];
|
|
|
|
//Sabre constants
|
|
static constexpr double s_tilt = -40.0;
|
|
static constexpr double s_zOffset = -0.1245;
|
|
static constexpr int s_nDets = 5;
|
|
static constexpr double s_centerPhiList[s_nDets] = {306.0, 18.0, 234.0, 162.0, 90.0};
|
|
static constexpr double s_deg2rad = M_PI/180.0;
|
|
static constexpr double s_deadlayerThickness = 50 * 1e-7 * 2.3296 * 1e6; // ug/cm^2 (50 nm thick * density)
|
|
static constexpr double s_detectorThickness = 500 * 1e-4 * 2.3926 * 1e6; // ug/cm^2 (500 um thick * density)
|
|
static constexpr double s_degraderThickness = 70.0 * 1.0e-4 * 16.69 * 1e6; //tantalum degrader (70 um thick)
|
|
|
|
static constexpr double s_energyThreshold = 0.25; //in MeV
|
|
|
|
};
|
|
|
|
#endif
|