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
blob
master
A_N
Ana
AndersonAnalysisModules
AntiSigma
BBCStudy
Calo_Validation_Package
Calo_waveform_sim
Calorimeter
CalorimeterEmbedding
CalorimeterJets
cdbEMCalExample
cemcRecoAna
Centrality_Validation_Package
dNdEta_Run2023
EIC-IR
EIC-SynRad
EICAnalysis
EICMCAnalysis
EICTrigger
ElectronID
EMCal-analysis
EMCal-calibration
EMCal-commissioning
EMCal-LEDs
EMCal-position-dependent-calibration
EMCal-QA
EMCal_pi0_Calib_2023
EMCTemplateFitting
EpFinder
Event-Display
EventMix
FilterEvents
FilterEventsUpsilon
Fluence
ForwardCalo
ForwardTracking
FrawleyTrackEvalMacros
hbcup
HCal-analysis
HCalCosmicCalib
HCalHotTowerFinder
HCalib
HcalSingleHadronCalib
HF-Jet
HF-Particle
isoCluster
IsolatedTrackAnalysis
JS-Jet
mbdAnalysis
MBDStudy
MultiDetectorMultiplicity
MvtxTelescope
AnaMvtxPrototype1
AnaMvtxTB2019
AnaMvtxTelescopeHits
AnaMvtxTelescopeHits.C
AnaMvtxTelescopeHits.h
AnaMvtxTelescopeHitsLinkDef.h
AnaTestbeamV1
macros
mybuild
ParticleID
PHFlowJetMaker
PhotonConversion
PhotonJet
pi0ClusterAna
pi0Efficiency
Pi0MassAnalysis
Prototype2
Prototype3
Prototype4
psTOF
pythiaEMCalAna
pythiaInfo
QuarkoniaBG
quickHIJING
ResonanceJetTaggingOutputs
runTrackingDiagnostics
Shift_emcal_g4hits
SimpleTrackingAnalysis
singlePhotonClusterAna
sPhenixAj
SvtxSimPerformanceCheckReco
TemplateCreation
Test
TowerInfoExample
TPC
TPC-ClusterAnimation
TPC-GemGain
Tracking
TrackPid
TreeMaker
ZDC-CALIB
analysis_tpc_prototype
coresoftware
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
AnaMvtxTelescopeHits.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file AnaMvtxTelescopeHits.h
1
9
#ifndef __AnaMvtxTelescopeHits_H__
10
#define __AnaMvtxTelescopeHits_H__
11
12
// --- need to check all these includes...
13
#include <
fun4all/SubsysReco.h
>
14
// #include <GenFit/GFRaveVertex.h>
15
// #include <GenFit/Track.h>
16
#include <string>
17
#include <vector>
18
#include <map>
19
20
#include "TMath.h"
21
22
class
SvtxTrack
;
23
class
SvtxTrackMap
;
24
class
SvtxVertexMap
;
25
class
SvtxVertex
;
26
class
PHCompositeNode
;
27
class
PHG4TruthInfoContainer
;
28
class
SvtxClusterMap;
29
class
SvtxCluster;
30
class
SvtxEvalStack
;
31
class
JetMap
;
32
33
class
TFile;
34
class
TTree;
35
class
TH1D;
36
class
TH2D;
37
38
39
typedef
std::vector<SvtxCluster*>
ClusVec
;
40
typedef
std::vector<ClusVec>
TrkVec
;
41
typedef
std::multimap<unsigned int, SvtxCluster*>
LyrClusMap
;
42
43
44
class
AnaMvtxTelescopeHits
:
public
SubsysReco
{
45
46
public
:
47
48
AnaMvtxTelescopeHits
(
const
std::string
&
name
=
"AnaMvtxTelescopeHits"
,
49
const
std::string
&ofName =
"out.root"
);
50
51
int
Init
(
PHCompositeNode
*);
52
int
InitRun
(
PHCompositeNode
*);
53
int
process_event
(
PHCompositeNode
*);
54
int
End
(
PHCompositeNode
*);
55
56
private
:
57
58
//-- Functions
59
int
GetNodes
(
PHCompositeNode
*);
60
61
// PHGenFit::Track* MakeGenFitTrack(PHCompositeNode *,
62
// const SvtxTrack* intrack,
63
// const SvtxVertex* vertex);
64
65
// int GetTrackCandidates(LyrClusMap* clusmap, TrkVec* trkvec);
66
67
// void LinkClusters(ClusVec* trk, unsigned int next_lyr, LyrClusMap* clusmap, TrkVec* trkvec);
68
69
// ClusVec ChooseBestTrk(TrkVec* trkcnd);
70
71
// double FitTrk(ClusVec* trk);
72
73
double
CalcSlope
(
double
x0
,
double
y0,
double
x1,
double
y1);
74
double
CalcIntecept
(
double
x0,
double
y0,
double
m
);
75
double
CalcProjection
(
double
x
,
double
m,
double
b
);
76
//-- Nodes
77
SvtxClusterMap*
_clustermap
;
78
79
//-- Flags
80
81
82
//-- Output
83
std::string
_foutname
;
84
TFile *
_f
;
85
86
TH1D*
hlayer
;
87
TH1D*
hsize_phi
[4];
88
TH1D*
hsize_z
[4];
89
TH2D*
hphiz
[4];
90
TH1D*
hdphi
[4];
91
TH1D*
hdz
[4];
92
93
94
//-- internal variables
95
int
_ievent
;
96
97
98
};
99
100
#endif // __AnaMvtxTelescopeHits_H__
analysis
blob
master
MvtxTelescope
AnaMvtxTelescopeHits
AnaMvtxTelescopeHits.h
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:17:54
using
1.8.2 with
sPHENIX GitHub integration