"git@code.ihep.ac.cn:cinema-developers/xerces-c.git" did not exist on "d44c49947a036a20aca584950f9b0e74097341dc"
Newer
Older
#ifndef AnExampleDetElemTool_h
#define AnExampleDetElemTool_h
#include "GaudiKernel/AlgTool.h"
#include <GaudiKernel/ToolHandle.h>
#include "G4SystemOfUnits.hh"
#include "G4PhysicalConstants.hh"
#include "DetSimInterface/IDetElemTool.h"
#include "DetSimInterface/ISensDetTool.h"
class AnExampleDetElemTool: public extends<AlgTool, IDetElemTool> {
public:
using extends::extends;
G4LogicalVolume* getLV() override;
void ConstructSDandField() override;
StatusCode initialize() override;
StatusCode finalize() override;
private:
Gaudi::Property<double> m_x{this, "X", 30.*m};
Gaudi::Property<double> m_y{this, "Y", 30.*m};
Gaudi::Property<double> m_z{this, "Z", 30.*m};

lintao@ihep.ac.cn
committed
// DD4hep XML compact file path
Gaudi::Property<std::string> m_dd4hep_xmls{this, "detxml"};
ToolHandle<ISensDetTool> m_calo_sdtool;
ToolHandle<ISensDetTool> m_driftchamber_sdtool;
ToolHandle<ISensDetTool> m_tpc_sdtool;
};
#endif