Class Reference for E1039 Core & Analysis Software
SQPrimaryVertexGen.h
Go to the documentation of this file.
1 /*==========================================================================
2  Author: Abinash Pun, Kun Liu
3  Sep, 2019
4  Goal: Import the primary vertex generator of E906 experiment(DPVertexGenerator)
5  from Kun to E1039 experiment in Fun4All framework
6  ============================================================================*/
7 
8 #ifndef __SQPRIMARYVERTEXGEN_H__
9 #define __SQPRIMARYVERTEXGEN_H__
10 
11 #include <vector>
12 #include <memory>
13 #include <TString.h>
14 #include <TGeoManager.h>
15 #include <TF2.h>
16 #include <TVector3.h>
17 #include <TRandom1.h>
18 #include "SQBeamlineObject.h"
19 
20 class PHCompositeNode;
21 
23 
27 {
28 public:
30  int findInteractingPiece(double rndm);
31  void calcProb();
32 
33 public:
34  unsigned int nPieces;
35  double probSum;
36  double accumulatedProbs[100];
37  std::vector<SQBeamlineObject> interactables;
38 };
39 
41 
60 {
61  static constexpr double Z_MIN = -800.0;
62  static constexpr double Z_MAX = 503.0;
63 
64 public:
67 
70  int InitRun(TString filename);
71 
73  void fillMaterialProfile(MaterialProfile* prof, double xvtx, double yvtx);
74 
76  TVector3 generateVertex();
77 
79  void generateVtxPerp(double& x, double& y);
80 
82  double getPARatio() { return pARatio; }
83 
85  double getLuminosity() { return probSum; }
86 
88  static double funcBeamProfile(double* val, double* par);
89 
90 private:
92  void init();
93 
95  void FindMaterialBoundaries(const double xpos, const double ypos, const double z_min, const double z_max, int& n_b, double* z_b);
96 
98  void FindMaterialRange(double& z1, double& z2, const std::string name, const double xpos=0, const double ypos=0);
99 
101  MaterialProfile* defaultMatProf;
102 
104  double pARatio;
105  double probSum;
106 
108  TF2* beamProfile;
109 
111  TGeoManager* geoManager;
112 
114  TRandom1 rndm;
115 
117  PHCompositeNode* topNode;
118 
120  bool inited;
121 
123  double targetX0;
124  double targetY0;
125  double targetSX;
126  double targetSY;
127 
129  bool targetOnlyMode;
130  std::string material_mode;
131 
133  double z_start;
134  double z_stop;
135 };
136 
137 #endif
Class to hold the profile of materials at a (x, y) beam position.
int findInteractingPiece(double rndm)
unsigned int nPieces
double accumulatedProbs[100]
std::vector< SQBeamlineObject > interactables
Class to generate the event vertex, based on the beam profile and the target+spectrometer materials g...
double getLuminosity()
get the relative luminosity on this target
int InitRun(TString filename)
double getPARatio()
get the proton/neutron ratio of the piece, must be called after generateVertex
void generateVtxPerp(double &x, double &y)
use the beam profile to generate vertex in X-Y plane
void fillMaterialProfile(MaterialProfile *prof, double xvtx, double yvtx)
fill material profile using initial x/y position
static double funcBeamProfile(double *val, double *par)
beam profile function
TVector3 generateVertex()
generate 3-D vertex position
int InitRun(PHCompositeNode *node)
Initialize at the begining of Run.