Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v38r0 (2143aa4c)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
TupleExample Namespace Reference

Typedefs

typedef std::pair< double, double > Dublet
 
typedef std::pair< Dublet, double > Triplet
 

Functions

Tuples::TuplefillNTuple (Tuples::Tuple &t, const std::string &n, const Dublet &p)
 helper function useful for the partial specialization of N-Tuple fills More...
 
Tuples::TuplefillNTuple (Tuples::Tuple &t, const std::string &n, const Triplet &p)
 helper function useful for the partial specialization of N-Tuple fills More...
 

Detailed Description

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

Typedef Documentation

◆ Dublet

typedef std::pair<double, double> TupleExample::Dublet

Definition at line 45 of file TupleDef.h.

◆ Triplet

Definition at line 46 of file TupleDef.h.

Function Documentation

◆ fillNTuple() [1/2]

Tuples::Tuple & TupleExample::fillNTuple ( Tuples::Tuple t,
const std::string n,
const Dublet p 
)

helper function useful for the partial specialization of N-Tuple fills

Parameters
ttuple
nbase column name
pdata 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.

35  {
36  if ( !t.valid() ) { return t; }
37  t->column( n + "F", p.first ).ignore();
38  t->column( n + "S", p.second ).ignore();
39  return t;
40  }

◆ fillNTuple() [2/2]

Tuples::Tuple & TupleExample::fillNTuple ( Tuples::Tuple t,
const std::string n,
const Triplet p 
)

helper function useful for the partial specialization of N-Tuple fills

Parameters
ttuple
nbase column name
pdata 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.

50  {
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();
55  return t;
56  }
bug_34121.t
t
Definition: bug_34121.py:30
GaudiPluginService.cpluginsvc.n
n
Definition: cpluginsvc.py:234