ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
analysis
coresoftware
blob
master
calibrations
generators
offline
simulation
g4simulation
EICPhysicsList
g4bbc
BbcVertex.h
BbcVertexFastSimReco.cc
BbcVertexFastSimReco.h
BbcVertexLinkDef.h
BbcVertexMap.cc
BbcVertexMap.h
BbcVertexMapLinkDef.h
BbcVertexMapv1.cc
BbcVertexMapv1.h
BbcVertexMapv1LinkDef.h
BbcVertexv1.cc
BbcVertexv1.h
BbcVertexv1LinkDef.h
g4calo
g4centrality
g4decayer
g4detectors
g4epd
g4eval
g4gdml
g4histos
g4intt
g4jets
g4main
g4micromegas
g4mvtx
g4tpc
g4trackfastsim
g4vertex
tpcresponse
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
BbcVertexv1.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file BbcVertexv1.h
1
#ifndef G4BBC_BBCVERTEXV1_H
2
#define G4BBC_BBCVERTEXV1_H
3
4
#include "
BbcVertex.h
"
5
6
#include <iostream>
7
8
class
BbcVertexv1
:
public
BbcVertex
9
{
10
public
:
11
BbcVertexv1
();
12
~BbcVertexv1
()
override
;
13
14
// PHObject virtual overloads
15
16
void
identify
(std::ostream& os = std::cout)
const override
;
17
void
Reset
()
override
{ *
this
=
BbcVertexv1
(); }
18
int
isValid
()
const override
;
19
PHObject
*
CloneMe
()
const override
{
return
new
BbcVertexv1
(*
this
); }
20
21
// vertex info
22
23
unsigned
int
get_id
()
const override
{
return
_id
; }
24
void
set_id
(
unsigned
int
id
)
override
{
_id
= id; }
25
26
float
get_t
()
const override
{
return
_t
; }
27
void
set_t
(
float
t
)
override
{
_t
=
t
; }
28
29
float
get_t_err
()
const override
{
return
_t_err
; }
30
void
set_t_err
(
float
t_err)
override
{
_t_err
= t_err; }
31
32
float
get_z
()
const override
{
return
_z
; }
33
void
set_z
(
float
z
)
override
{
_z
=
z
; }
34
35
float
get_z_err
()
const override
{
return
_z_err
; }
36
void
set_z_err
(
float
z_err)
override
{
_z_err
= z_err; }
37
38
private
:
39
unsigned
int
_id
;
//< unique identifier within container
40
float
_t
;
//< collision time
41
float
_t_err
;
//< collision time uncertainty
42
float
_z
;
//< collision position z
43
float
_z_err
;
//< collision position z uncertainty
44
45
ClassDefOverride
(
BbcVertexv1
, 1);
46
};
47
48
#endif
coresoftware
blob
master
simulation
g4simulation
g4bbc
BbcVertexv1.h
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:40
using
1.8.2 with
ECCE GitHub integration