Skip to content
Snippets Groups Projects
Commit d5600e3c authored by myliu@ihep.ac.cn's avatar myliu@ihep.ac.cn
Browse files

The default centimeter unit in DD4hep

parent 4679662a
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ typedef struct Layer
double eps;
double offset;
Layer(){};
Layer(double x, double y, double z, double k):layerphi(x),R(y),eps(z),offset(k){};
Layer(double x, double y, double z, double k):layerphi(x),R(y),eps(z),offset(k){}
bool operator < (const Layer &a) const
{
return layerphi < a.layerphi;
......@@ -46,7 +46,7 @@ public:
const VolumeID& aVolumeID) const;
virtual double distanceTrackWire(const CellID& cID, const TVector3& hit_start/*, const TVector3& hit_end*/) const;
double phi(const CellID& cID) const;
// double phi(const CellID& cID) const;
inline double cell_Size() const { return m_cellSize; }
inline double epsilon0() const { return m_epsilon0; }
inline double detectorLength() const { return m_detectorLength; }
......@@ -122,6 +122,7 @@ public:
protected:
double phi(const CellID& cID) const;
std::map<int,LAYER> layer_params; // <layer, {layerphi, R, eps, offset}>
std::map<int, std::vector<std::pair<TVector3, TVector3> >> m_wiresPositions; // < layer, vec<WireMidpoint, WireDirection> >
......
......@@ -81,8 +81,8 @@ double GridDriftChamber::distanceTrackWire(const CellID& cID, const TVector3& hi
double phi_start = phi(cID);
double phi_end = phi_start + returnAlpha();
TVector3 Wstart = 10*returnWirePosition(phi_start, -1); // Convert from cm to mm
TVector3 Wend = 10*returnWirePosition(phi_end, 1); // Convert from cm to mm
TVector3 Wstart = returnWirePosition(phi_start, -1); // The default centimeter unit in DD4hep
TVector3 Wend = returnWirePosition(phi_end, 1); // The default centimeter unit in DD4hep
// TVector3 a = hit_end - hit_start;
TVector3 b = Wend - Wstart;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment