From a37f68eca4dc258edcf526752aac45d697c6a384 Mon Sep 17 00:00:00 2001 From: "theodore.efremov" <theodore.efremov@cea.fr> Date: Tue, 22 Oct 2024 14:55:51 +0200 Subject: [PATCH] Added Phif and PhifLin --- NPLib/Detectors/PISTA/TFPMWPhysics.cxx | 13 +++++++++---- NPLib/Detectors/PISTA/TFPMWPhysics.h | 2 ++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/NPLib/Detectors/PISTA/TFPMWPhysics.cxx b/NPLib/Detectors/PISTA/TFPMWPhysics.cxx index 9c1c1bbcb..f088f42dc 100644 --- a/NPLib/Detectors/PISTA/TFPMWPhysics.cxx +++ b/NPLib/Detectors/PISTA/TFPMWPhysics.cxx @@ -30,7 +30,7 @@ #include <limits> #include <filesystem> using namespace std; - + // NPL #include "RootInput.h" #include "RootOutput.h" @@ -156,7 +156,7 @@ void TFPMWPhysics::BuildPhysicalEvent() { //ChargeY.push_back(QSumY[DetN]); PositionX.push_back(PosX); PositionY.push_back(PosY); - + //Here we linearise the position if the yaml file is found if (LoadLinea == true){ int IndexX = (DetN-1) * 2; @@ -358,12 +358,14 @@ void TFPMWPhysics::CalculateFocalPlanePosition(double Zf){ double t = (Z3-Zf)/(Z2-Zf); Xf = 1./(t-1)*(t*X2-X3); - Thetaf = atan((X3-X2)/(Z3-Z2)); Z2 = DetPosZ[2]+m_GapSize; Z3 = DetPosZ[3]+m_GapSize; Yf = 1./(t-1)*(t*Y2-Y3); + Thetaf = atan((X3-X2)/(Z3-Z2)); + Phif = atan((Y3-Y2)/(Z3-Z2)); + if (LoadLinea == true){ Z2 = DetPosZ[2]-m_GapSize; Z3 = DetPosZ[3]-m_GapSize; @@ -374,12 +376,13 @@ void TFPMWPhysics::CalculateFocalPlanePosition(double Zf){ double t = (Z3-Zf)/(Z2-Zf); XfLin = 1./(t-1)*(t*X2Lin-X3Lin); - ThetafLin = atan((X3Lin-X2Lin)/(Z3-Z2)); Z2 = DetPosZ[2]+m_GapSize; Z3 = DetPosZ[3]+m_GapSize; YfLin = 1./(t-1)*(t*Y2Lin-Y3Lin); + ThetafLin = atan((X3Lin-X2Lin)/(Z3-Z2)); + PhifLin = atan((Y3Lin-Y2Lin)/(Z3-Z2)); } //end load yaml true } } @@ -694,9 +697,11 @@ void TFPMWPhysics::Clear() { XfLin = -1000; YfLin = -1000; Thetaf = -1000; + Phif = -1000; Theta_in = -1000; Phi_in = -1000; ThetafLin = -1000; + PhifLin = -1000; Theta_in_Lin = -1000; Phi_in_Lin = -1000; diff --git a/NPLib/Detectors/PISTA/TFPMWPhysics.h b/NPLib/Detectors/PISTA/TFPMWPhysics.h index 2957538a1..959ebba21 100644 --- a/NPLib/Detectors/PISTA/TFPMWPhysics.h +++ b/NPLib/Detectors/PISTA/TFPMWPhysics.h @@ -85,6 +85,8 @@ class TFPMWPhysics : public TObject, public NPL::VDetector { double YfLin; double Thetaf; double ThetafLin; + double Phif; + double PhifLin; double Xt; double Yt; double XtLin; -- GitLab