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
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
FairDbRowStream.cxx
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file FairDbRowStream.cxx
1
2
#include "
FairDbTableMetaData.h
"
3
#include "
FairDbRowStream.h
"
4
#include "
FairDbString.h
"
5
6
ClassImp
(
FairDbRowStream
)
7
8
9
FairDbRowStream
::
FairDbRowStream
(const
FairDbTableMetaData
* metaData) :
10
fCurCol(1),
11
fHasRowCounter(kFALSE),
12
fMetaData(metaData)
13
{
14
fHasRowCounter = fMetaData->
HasRowCounter
();
15
16
}
17
18
19
20
FairDbRowStream::~FairDbRowStream
()
21
{
22
23
}
24
25
26
const
FairDbFieldType
&
FairDbRowStream::ColFieldType
(UInt_t col)
const
27
{
28
29
return
fMetaData
->
ColFieldType
(col);
30
}
31
32
string
FairDbRowStream::ColName
(UInt_t col)
const
33
{
34
return
fMetaData
->
ColName
(col);
35
}
36
37
const
FairDbFieldType
&
FairDbRowStream::CurColFieldType
()
const
38
{
39
40
return
fMetaData
->
ColFieldType
(
fCurCol
);
41
}
42
43
44
string
FairDbRowStream::CurColName
()
const
45
{
46
47
return
fMetaData
->
ColName
(
fCurCol
);
48
}
49
50
51
UInt_t
FairDbRowStream::NumCols
()
const
52
{
53
54
return
fMetaData
->
NumCols
();
55
56
}
57
58
59
string
FairDbRowStream::TableName
()
const
60
{
61
62
return
FairUtilString::ToUpper
(
fMetaData
->
TableName
());
63
}
64
65
string
FairDbRowStream::TableNameTc
()
const
66
{
67
68
return
fMetaData
->
TableName
();
69
}
EicRoot
blob
master
dbase
dbInterface
FairDbRowStream.cxx
Built by
Jin Huang
. updated:
Mon Jan 22 2024 12:43:33
using
1.8.2 with
EIC GitHub integration