Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
Analysis Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
acts-fatras
analysis
analysis_tpc_prototype
coresoftware
blob
master
calibrations
generators
offline
simulation
g4simulation
g4bbc
g4calo
g4centrality
g4decayer
g4detectors
g4epd
g4eval
g4gdml
g4histos
g4ihcal
g4intt
InttDeadMap.cc
InttDeadMap.h
InttDeadMapLinkDef.h
InttDeadMapv1.cc
InttDeadMapv1.h
InttDeadMapv1LinkDef.h
PHG4InttDeadMapLoader.cc
PHG4InttDeadMapLoader.h
PHG4InttDefs.h
PHG4InttDetector.cc
PHG4InttDetector.h
PHG4InttDigitizer.cc
PHG4InttDigitizer.h
PHG4InttDisplayAction.cc
PHG4InttDisplayAction.h
PHG4InttFPHXParameterisation.cc
PHG4InttFPHXParameterisation.h
PHG4InttHitReco.cc
PHG4InttHitReco.h
PHG4InttSteppingAction.cc
PHG4InttSteppingAction.h
PHG4InttSubsystem.cc
PHG4InttSubsystem.h
g4jets
g4main
g4micromegas
g4mvtx
g4ohcal
g4tpc
g4trackfastsim
g4tracking
g4vertex
g4waveformsim
validation
Doxygen_Assist
g4exampledetector
GenFit
JETSCAPE
KFParticle
macros
online_distribution
OnlMon
prototype
pythia6
rcdaq
RDBC
tutorials
doxygen_mainpage.h
File Members
Examples
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
PHG4InttHitReco.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file PHG4InttHitReco.h
1
// Tell emacs that this is a C++ source
2
// This file is really -*- C++ -*-.
3
#ifndef G4INTT_PHG4INTTHITRECO_H
4
#define G4INTT_PHG4INTTHITRECO_H
5
6
7
#include <
fun4all/SubsysReco.h
>
8
#include <gsl/gsl_vector.h>
// for gsl_vector
9
#include <phparameter/PHParameterInterface.h>
10
#include <
trackbase/TrkrDefs.h
>
11
12
#include <cmath>
13
#include <map>
14
#include <string>
15
16
class
PHCompositeNode
;
17
18
class
ClusHitsVerbosev1
;
19
class
PHG4Hit
;
20
class
PHG4TruthInfoContainer
;
21
class
TrkrClusterContainer
;
22
class
TrkrClusterContainer
;
23
class
TrkrHitSetContainer
;
24
class
TrkrTruthTrack
;
25
class
TrkrTruthTrackContainer
;
26
27
class
PHG4InttHitReco
:
public
SubsysReco
,
public
PHParameterInterface
28
{
29
public
:
30
PHG4InttHitReco
(
const
std::string
&
name
=
"PHG4InttHitReco"
);
31
32
~PHG4InttHitReco
()
override
;
34
int
InitRun
(
PHCompositeNode
*topNode)
override
;
35
37
int
process_event
(
PHCompositeNode
*topNode)
override
;
38
40
void
SetDefaultParameters
()
override
;
41
42
void
Detector
(
const
std::string
&d) {
m_Detector
= d; }
43
44
protected
:
45
std::string
m_Detector
=
"INTT"
;
46
std::string
m_HitNodeName
;
47
std::string
m_CellNodeName
;
48
std::string
m_GeoNodeName
;
49
50
double
m_Tmin
;
51
double
m_Tmax
;
52
double
m_crossingPeriod
;
53
54
gsl_vector *
m_LocalOutVec
=
nullptr
;
55
gsl_vector *
m_PathVec
=
nullptr
;
56
gsl_vector *
m_SegmentVec
=
nullptr
;
57
58
// needed for clustering truth tracks
59
private
:
60
TrkrTruthTrackContainer
*
m_truthtracks
{
nullptr
};
// output truth tracks
61
TrkrClusterContainer
*
m_truthclusters
{
nullptr
};
// output clusters indexed to TrkrDefs::cluskeys in m_truthtracks
62
PHG4TruthInfoContainer
*
m_truthinfo
{
nullptr
};
63
int
m_trkid
{ -1 };
64
bool
m_is_emb
{
false
};
65
TrkrTruthTrack
*
m_current_track
{
nullptr
};
66
const
int
m_cluster_version
{ 4 };
67
TrkrHitSetContainer
*
m_truth_hits
;
// generate and delete a container for each truth track
68
std::map<TrkrDefs::hitsetkey,unsigned int>
m_hitsetkey_cnt
{};
// counter for making ckeys form hitsetkeys
69
70
PHG4Hit
*
prior_g4hit
{
nullptr
};
// used to check for jumps in g4hits for loopers;
71
void
truthcheck_g4hit
(
PHG4Hit
*,
PHCompositeNode
* topNode );
72
void
addtruthhitset
(
TrkrDefs::hitsetkey
,
TrkrDefs::hitkey
,
float
neffelectrons );
73
void
cluster_truthhits
(
PHCompositeNode
* topNode );
74
void
end_event_truthcluster
(
PHCompositeNode
* topNode );
75
76
double
m_pixel_thresholdrat
{ 0.01 };
77
float
max_g4hitstep
{ 2.0 };
78
bool
record_ClusHitsVerbose
{
false
};
79
80
public
:
81
void
set_pixel_thresholdrat
(
double
val) {
m_pixel_thresholdrat
= val; };
82
void
set_max_g4hitstep
(
float
_
) {
max_g4hitstep
=
_
; };
83
84
void
set_ClusHitsVerbose
(
bool
set
=
true
) {
record_ClusHitsVerbose
=
set
; };
85
ClusHitsVerbosev1
*
mClusHitsVerbose
{
nullptr
};
86
87
};
88
89
#endif
coresoftware
blob
master
simulation
g4simulation
g4intt
PHG4InttHitReco.h
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:18:15
using
1.8.2 with
sPHENIX GitHub integration