Skip to content
Snippets Groups Projects
Commit a37f68ec authored by Theodore Efremov's avatar Theodore Efremov :hibiscus:
Browse files

Added Phif and PhifLin

parent 9f8c5196
No related branches found
No related tags found
1 merge request!27Draft: [Epic] Preparation of the environement for the new GaseousDetectorScorers...
Pipeline #359690 failed
......@@ -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;
......
......@@ -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;
......
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