BOSS
7.1.2
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.2
►
Analysis
►
BesCxxPolicy
►
BesExamples
►
BesPolicy
▼
Calibration
▼
CalibData
▼
CalibData-00-02-02
►
CalibData
▼
src
►
Dedx
►
Dll
►
Emc
►
EsTime
►
Ets
►
Mdc
►
Muc
►
Tof
CalibBase.cxx
CalibBase1.cxx
►
CalibModel.cxx
CalibModelSvc.cxx
DacCol.cxx
mainpage.h
►
CalibSvc
►
calibUtil
►
facilities
►
rdbModel
►
xmlBase
►
Control
►
Database
►
DetectorDescription
►
DistBoss
►
DQA
►
Emc
►
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
DacCol.cxx
Go to the documentation of this file.
1
// $Header: /bes/bes/BossCvs/Calibration/CalibData/src/DacCol.cxx,v 1.1.1.1 2005/10/17 06:13:32 maqm Exp $
2
3
#include "
CalibData/DacCol.h
"
4
5
namespace
CalibData
{
6
7
DacCol::DacCol
(std::vector<unsigned>* vals) {
8
if
(vals) {
9
m_dacs.clear();
10
for
(
unsigned
int
iDac = 0; iDac < vals->size(); iDac++) {
11
m_dacs.push_back((*vals)[iDac]);
12
}
13
}
14
}
7
DacCol::DacCol
(std::vector<unsigned>* vals) {
…
}
15
DacCol::DacCol
(std::vector<int>* vals) {
16
if
(vals) {
17
m_dacs.clear();
18
for
(
unsigned
int
iDac = 0; iDac < vals->size(); iDac++) {
19
unsigned
val = (*vals)[iDac];
20
m_dacs.push_back(val);
21
}
22
}
23
}
15
DacCol::DacCol
(std::vector<int>* vals) {
…
}
24
25
void
DacCol::update
(
const
DacCol
* other) {
26
m_dacs.clear();
27
for
(
unsigned
int
iDac = 0; iDac < other->m_dacs.size(); iDac++) {
28
m_dacs.push_back((other->m_dacs)[iDac]);
29
}
30
}
25
void
DacCol::update
(
const
DacCol
* other) {
…
}
31
32
}
DacCol.h
CalibData::DacCol
Definition
DacCol.h:11
CalibData::DacCol::DacCol
DacCol(std::vector< unsigned > *vals=0)
Definition
DacCol.cxx:7
CalibData::DacCol::update
void update(const DacCol *other)
Deep copy.
Definition
DacCol.cxx:25
CalibData
Definition
Calibration/CalibData/CalibData-00-02-02/CalibData/CalibBase.h:27
7.1.2
Calibration
CalibData
CalibData-00-02-02
src
DacCol.cxx
Generated by
1.12.0