The Gaudi Framework
v36r11 (bdb84f5f)
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
a
c
d
e
f
i
l
m
n
o
p
r
s
t
Enumerator
a
b
c
d
e
f
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Properties
Related Functions
:
a
b
c
d
e
g
h
i
m
o
p
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
_
b
c
e
f
g
h
i
l
m
n
o
p
r
s
t
u
z
Variables
a
b
c
d
e
g
h
i
m
o
p
r
s
t
v
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerations
Enumerator
c
e
f
p
u
v
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
FileMgrTest.h
Go to the documentation of this file.
1
/***********************************************************************************\
2
* (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
3
* *
4
* This software is distributed under the terms of the Apache version 2 licence, *
5
* copied verbatim in the file "LICENSE". *
6
* *
7
* In applying this licence, CERN does not waive the privileges and immunities *
8
* granted to it by virtue of its status as an Intergovernmental Organization *
9
* or submit itself to any jurisdiction. *
10
\***********************************************************************************/
11
#ifndef GAUDIEXAMPLES_FILEMGRTEST_H
12
#define GAUDIEXAMPLES_FILEMGRTEST_H
13
14
//<<<<<< INCLUDES >>>>>>
15
#include "
GaudiKernel/Algorithm.h
"
16
//<<<<<< CLASS DECLARATIONS >>>>>>
21
#include "
GaudiKernel/IFileMgr.h
"
22
#include <stdio.h>
23
#include <string>
24
25
class
IFileMgr
;
26
class
TFile;
27
28
class
FileMgrTest
:
public
Algorithm
{
29
30
public
:
31
FileMgrTest
(
const
std::string
&
name
,
ISvcLocator
* pSvcLocator );
32
StatusCode
initialize
()
override
;
33
StatusCode
execute
()
override
;
34
StatusCode
finalize
()
override
;
35
36
private
:
37
IFileMgr
*
p_fileMgr
;
38
Io::Fd
fd_1
{ -1 },
fd_2
{ -1 },
fd_3
{ -1 },
fd_4
{ -1 };
39
FILE *
fp_1
{
nullptr
}, *
fp_2
{
nullptr
}, *
fp_3
{
nullptr
}, *
fp_4
{
nullptr
};
40
TFile *
fp_r1
{
nullptr
}, *
fp_r2
{
nullptr
}, *
fp_r3
{
nullptr
};
41
std::string
m_f1
,
m_f2
,
m_f3
,
m_f4
,
m_fr1
,
m_fr2
,
m_fr3
;
42
43
StatusCode
PosixOpenAction
(
FILEMGR_CALLBACK_ARGS
);
44
StatusCode
allCloseAction
(
FILEMGR_CALLBACK_ARGS
);
45
};
46
47
#endif // GAUDIEXAMPLES_FILEMGRTEST_H
FileMgrTest::fp_2
FILE * fp_2
Definition:
FileMgrTest.h:39
FileMgrTest::fp_4
FILE * fp_4
Definition:
FileMgrTest.h:39
FileMgrTest::finalize
StatusCode finalize() override
Definition:
FileMgrTest.cpp:203
FileMgrTest::fd_4
Io::Fd fd_4
Definition:
FileMgrTest.h:38
std::string
STL class.
FileMgrTest::fp_r1
TFile * fp_r1
Definition:
FileMgrTest.h:40
FileMgrTest::fd_1
Io::Fd fd_1
Definition:
FileMgrTest.h:38
FileMgrTest::m_f3
std::string m_f3
Definition:
FileMgrTest.h:41
Gaudi::Algorithm::name
const std::string & name() const override
The identifying name of the algorithm object.
Definition:
Algorithm.cpp:542
FileMgrTest
an algorithm to test the FileMgr
Definition:
FileMgrTest.h:28
ISvcLocator
Definition:
ISvcLocator.h:46
Algorithm
Alias for backward compatibility.
Definition:
Algorithm.h:58
Algorithm.h
IFileMgr
Definition:
IFileMgr.h:294
IFileMgr.h
FileMgrTest::fp_3
FILE * fp_3
Definition:
FileMgrTest.h:39
FileMgrTest::execute
StatusCode execute() override
Definition:
FileMgrTest.cpp:178
FileMgrTest::m_fr1
std::string m_fr1
Definition:
FileMgrTest.h:41
StatusCode
Definition:
StatusCode.h:65
FileMgrTest::fp_r2
TFile * fp_r2
Definition:
FileMgrTest.h:40
FileMgrTest::initialize
StatusCode initialize() override
Definition:
FileMgrTest.cpp:35
FileMgrTest::fp_1
FILE * fp_1
Definition:
FileMgrTest.h:39
FileMgrTest::allCloseAction
StatusCode allCloseAction(FILEMGR_CALLBACK_ARGS)
Definition:
FileMgrTest.cpp:304
FileMgrTest::FileMgrTest
FileMgrTest(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
FileMgrTest.cpp:30
Io::Fd
int Fd
Definition:
IFileMgr.h:169
FileMgrTest::fd_2
Io::Fd fd_2
Definition:
FileMgrTest.h:38
FileMgrTest::m_fr3
std::string m_fr3
Definition:
FileMgrTest.h:41
FileMgrTest::m_f1
std::string m_f1
Definition:
FileMgrTest.h:41
FileMgrTest::PosixOpenAction
StatusCode PosixOpenAction(FILEMGR_CALLBACK_ARGS)
Definition:
FileMgrTest.cpp:283
FILEMGR_CALLBACK_ARGS
#define FILEMGR_CALLBACK_ARGS
Definition:
IFileMgr.h:287
FileMgrTest::p_fileMgr
IFileMgr * p_fileMgr
Definition:
FileMgrTest.h:37
FileMgrTest::m_f4
std::string m_f4
Definition:
FileMgrTest.h:41
FileMgrTest::fd_3
Io::Fd fd_3
Definition:
FileMgrTest.h:38
FileMgrTest::m_fr2
std::string m_fr2
Definition:
FileMgrTest.h:41
FileMgrTest::fp_r3
TFile * fp_r3
Definition:
FileMgrTest.h:40
FileMgrTest::m_f2
std::string m_f2
Definition:
FileMgrTest.h:41
GaudiExamples
src
FileMgr
FileMgrTest.h
Generated on Mon Feb 27 2023 19:04:35 for The Gaudi Framework by
1.8.18