EIC Software
Reference for
EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
BeastMagneticField
delphes_EIC
Doxygen_Assist
east
eic-smear
EicRoot
eicsmear-jetexample
eicsmeardetectors
EicToyModel
estarlight
Fun4All-lmon
fun4all_coresoftware
blob
master
calibrations
generators
offline
database
dbtools
pdbcal
base
Pdb.h
PdbApplication.cc
PdbApplication.h
PdbApplicationFactory.h
PdbBankID.cc
PdbBankID.h
PdbBankIDLinkDef.h
PdbBankList.h
PdbBankListIterator.h
PdbBankManager.cc
PdbBankManager.h
PdbBankManagerFactory.h
PdbCalBank.cc
PdbCalBank.h
PdbCalBankIterator.h
PdbCalBankLinkDef.h
PdbCalChan.h
PdbCalChanLinkDef.h
PdbClassMap.h
PdbParameter.cc
PdbParameter.h
PdbParameterError.cc
PdbParameterError.h
PdbParameterErrorLinkDef.h
PdbParameterLinkDef.h
PdbParameterMap.cc
PdbParameterMap.h
PdbParameterMapContainer.cc
PdbParameterMapContainer.h
PdbParameterMapContainerLinkDef.h
PdbParameterMapLinkDef.h
PHGenericFactoryT.C
PHGenericFactoryT.h
RunToTime.cc
RunToTime.h
pg
PHParameter
framework
packages
QA
simulation
fun4all_eic_qa
fun4all_eic_tutorials
fun4all_eicdetectors
fun4all_eicmacros
fun4all_g4jleic
fun4all_GenFit
fun4all_macros
fun4all_tutorials
g4exampledetector
g4lblvtx
online_distribution
PEPSI
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
PdbParameter.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file PdbParameter.h
1
// Declaration of class PdbParameter
2
// Purpose: single parameter storage class
3
// Author: federica
4
5
#ifndef PDBCAL_BASE_PDBPARAMETER_H
6
#define PDBCAL_BASE_PDBPARAMETER_H
7
8
#include "
PdbCalChan.h
"
9
10
#include <string>
11
12
class
PdbParameter
:
public
PdbCalChan
{
13
public
:
14
PdbParameter
();
// this ctor should not be called but it cannot be
15
// made private since CINT needs a
16
// default ctor when reading from file
17
18
PdbParameter
(
const
double
,
const
std::string &
name
);
19
~PdbParameter
()
override
{}
20
21
double
getParameter
()
const
{
return
thePar
; }
22
const
std::string
getName
()
const
{
return
theName
; }
23
24
void
setParameter
(
const
double
val) {
thePar
= val; }
25
void
setName
(
const
std::string &name) {
theName
=
name
;}
26
27
void
print
()
const override
;
28
29
protected
:
30
31
double
thePar
;
32
std::string
theName
;
33
34
ClassDefOverride
(
PdbParameter
,1);
35
};
36
37
#endif
/* PDBCAL_BASE_PDBPARAMETER_H */
fun4all_coresoftware
blob
master
offline
database
pdbcal
base
PdbParameter.h
Built by
Jin Huang
. updated:
Mon Jan 22 2024 12:43:42
using
1.8.2 with
EIC GitHub integration