helper namespace for TupleEx example
- Author
- Vanya BELYAEV Ivan..nosp@m.Bely.nosp@m.aev@i.nosp@m.tep..nosp@m.ru
- Date
- 2005-11-29
◆ Dublet
◆ Triplet
◆ fillNTuple() [1/2]
helper function useful for the partial specialization of N-Tuple fills
- Parameters
-
t | tuple |
n | base column name |
p | data dublet |
- Author
- Vanya BELYAEV Ivan..nosp@m.Bely.nosp@m.aev@i.nosp@m.tep..nosp@m.ru
- Date
- 2005-11-29
Definition at line 35 of file TupleDef.cpp.
36 if ( !
t.valid() ) {
return t; }
37 t->column(
n +
"F", p.first ).ignore();
38 t->column(
n +
"S", p.second ).ignore();
◆ fillNTuple() [2/2]
helper function useful for the partial specialization of N-Tuple fills
- Parameters
-
t | tuple |
n | base column name |
p | data triplet |
- Author
- Vanya BELYAEV Ivan..nosp@m.Bely.nosp@m.aev@i.nosp@m.tep..nosp@m.ru
- Date
- 2005-11-29
Definition at line 50 of file TupleDef.cpp.
51 if ( !
t.valid() ) {
return t; }
52 t->column(
n +
"F", p.first.first ).ignore();
53 t->column(
n +
"S", p.first.second ).ignore();
54 t->column(
n +
"T", p.second ).ignore();