BOSS
7.1.1
BESIII Offline Software System
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace 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
a
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
c
d
e
g
h
i
l
m
n
o
p
r
s
t
Enumerations
Enumerator
a
b
c
d
e
f
i
k
l
m
n
o
p
r
s
t
u
w
x
z
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
y
z
Typedefs
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
v
w
Enumerations
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Symbols
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
v
w
x
Files
File List
File 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
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
y
z
Typedefs
a
b
c
d
e
f
h
i
j
k
l
m
n
p
r
s
t
u
v
w
z
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
r
s
t
u
w
Macros
_
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
▼
BOSS
Used Packages
Requirements
►
How to use the ERS package
Todo List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
7.1.1
►
Analysis
►
BesCxxPolicy
►
BesExamples
►
BesPolicy
►
Calibration
►
Control
►
Database
►
DetectorDescription
►
DistBoss
►
DQA
▼
Emc
▼
EmcCalib
▼
EmcBhaCalib
▼
EmcBhaCalib-00-01-00
▼
EmcBhaCalib
►
BhabhaType.h
►
EmcBhabha.h
►
EmcBhabhaEvent.h
►
EmcBhaCalib.h
►
EmcBhaCalibData.h
►
EmcCalibModLowHigh.h
►
EmcCalibTagDeadOrHot.h
►
EmcDataIO.h
►
EmcLSSMatrix.h
►
EmcSelBhaEvent.h
►
EmcShDigi.h
►
EmcShower.h
►
src
►
EmcCalibConstSvc
►
EmcGeneralClass
►
EmcRawEvent
►
EmcRecEventModel
►
EmcRecGeoSvc
►
EmcSatuDeadEnSvc
►
EmcShEnCalibSvc
►
EmcWaveform
►
Event
►
EventDisplay
►
EventFilter
►
EvtPreSelect
►
External
►
Generator
►
InstallArea
►
LumTauAlg
►
MagneticField
►
Mdc
►
Muc
►
OfflineEvtFilter
►
Reconstruction
►
RootPolicy
►
Simulation
►
Tof
►
Trigger
►
Utilities
►
Validation
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
EmcDataIO.h
Go to the documentation of this file.
1
//--------------------------------------------------------------------------
2
// Environment:
3
// This software was developed for the BESIII collaboration. If you
4
// use all or part of it, please give an appropriate acknowledgement.
5
//
6
// Copyright Information:
7
// Copyright (C) 2005 IHEP
8
//
9
//------------------------------------------------------------------------
10
11
#ifndef EMCDATAIO_H
12
#define EMCDATAIO_H
13
14
//-------------
15
// C Headers --
16
//-------------
17
extern
"C"
{
18
}
19
20
//---------------
21
// C++ Headers --
22
//---------------
23
#include <iostream>
24
//---------------
25
// Gaudi Headers --
26
//---------------
27
#include "GaudiKernel/MsgStream.h"
28
29
using namespace
std
;
30
31
32
// ---------------------
33
// -- Class Interface --
34
// ---------------------
35
36
/**
37
* Data input / output of Emc calibration using root.,
38
*
39
* @see
40
*
41
* @author Chunxiu Liu (originator/contributor etc.);
42
*/
43
44
class
EmcDataIO
{
45
46
//--------------------
47
// Instance Members --
48
//--------------------
49
50
public
:
51
52
//Constructors
53
EmcDataIO
();
54
55
//copy
56
EmcDataIO
(
const
EmcDataIO
&
m1
);
57
58
59
// Destructor
60
~EmcDataIO
();
61
62
63
64
protected
:
65
66
67
68
private
:
69
70
// Friends
71
72
// Data members
73
74
IMessageSvc* _msgSvc()
const
;
75
std::string name()
const
{
return
"EmcDataIO"
; }
76
77
};
44
class
EmcDataIO
{
…
};
78
79
#endif
/* EMCDATAIO_H */
80
EmcDataIO
Definition
EmcDataIO.h:44
EmcDataIO::~EmcDataIO
~EmcDataIO()
Definition
EmcDataIO.cxx:55
EmcDataIO::EmcDataIO
EmcDataIO()
Definition
EmcDataIO.cxx:43
std
Definition
RootEventData/RootEventData_rootcint.cxx:38
m1
double * m1
Definition
qcdloop1.h:75
7.1.1
Emc
EmcCalib
EmcBhaCalib
EmcBhaCalib-00-01-00
EmcBhaCalib
EmcDataIO.h
Generated by
1.12.0