The Gaudi Framework  v37r1 (a7f61348)
RCWNTupleCnv.cpp
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 #define ROOTHISTCNV_RCWNTUPLECNV_CPP
12 
13 // Include files
14 #include "GaudiKernel/INTupleSvc.h"
15 #include "GaudiKernel/MsgStream.h"
16 #include "GaudiKernel/NTuple.h"
17 
18 // Compiler include files
19 #include <cstdio>
20 #include <cstring>
21 #include <list>
22 #include <utility>
23 #include <vector>
24 
25 #include "RCWNTupleCnv.h"
26 
27 #include "TLeafD.h"
28 #include "TLeafF.h"
29 #include "TLeafI.h"
30 #include "TTree.h"
31 
32 namespace {
33  template <typename T>
34  size_t saveItem( char* target, const NTuple::_Data<T>& src ) {
35  static_assert( std::is_trivially_copyable_v<T>, "T must be trivally copyable" );
36  std::memcpy( target, src.buffer(), sizeof( T ) * src.length() );
37  return sizeof( T ) * src.length();
38  }
39 
40  template <typename T>
41  size_t loadItem( const char* src, NTuple::_Data<T>& target ) {
42  static_assert( std::is_trivially_copyable_v<T>, "T must be trivally copyable" );
43  std::memcpy( const_cast<void*>( target.buffer() ), src, sizeof( T ) * target.length() );
44  return sizeof( T ) * target.length();
45  }
46 
47  template <typename POD>
48  decltype( auto ) downcast_item( const INTupleItem& i ) {
49  return dynamic_cast<const NTuple::_Data<POD>&>( i );
50  }
51  template <typename POD>
52  decltype( auto ) downcast_item( INTupleItem& i ) {
53  return dynamic_cast<NTuple::_Data<POD>&>( i );
54  }
55  template <typename POD, typename T>
56  void downcast_item( T&& ) = delete;
57 
58  template <typename Item, typename F>
59  decltype( auto ) visit( Item& i, F&& f ) {
60  switch ( i.type() ) {
61  case DataTypeInfo::INT:
62  return f( downcast_item<int>( i ) );
63  case DataTypeInfo::CHAR:
64  return f( downcast_item<char>( i ) );
66  return f( downcast_item<short>( i ) );
67  case DataTypeInfo::LONG:
68  return f( downcast_item<long>( i ) );
70  return f( downcast_item<long long>( i ) );
72  return f( downcast_item<unsigned char>( i ) );
74  return f( downcast_item<unsigned short>( i ) );
75  case DataTypeInfo::UINT:
76  return f( downcast_item<unsigned int>( i ) );
78  return f( downcast_item<unsigned long>( i ) );
80  return f( downcast_item<unsigned long long>( i ) );
82  return f( downcast_item<double>( i ) );
84  return f( downcast_item<float>( i ) );
85  case DataTypeInfo::BOOL:
86  return f( downcast_item<bool>( i ) );
87  }
88  throw std::runtime_error( "RCWNTupleCnv::visit: unknown INTupleItem::type()" );
89  }
90 
91  //-----------------------------------------------------------------------------
92  template <class T>
93  void analyzeItem( std::string typ, const NTuple::_Data<T>* it, std::string& desc, std::string& block_name,
94  std::string& var_name, long& lowerRange, long& upperRange, long& size )
95  //-----------------------------------------------------------------------------
96  {
97 
98  RootHistCnv::parseName( it->name(), block_name, var_name );
99 
100  // long item_size = (sizeof(T) < 4) ? 4 : sizeof(T);
101  long item_size = sizeof( T );
102  long dimension = it->length();
103  long ndim = it->ndim() - 1;
104  desc += var_name;
105  if ( it->hasIndex() || it->length() > 1 ) { desc += '['; }
106  if ( it->hasIndex() ) {
107  std::string ind_blk, ind_var;
108  RootHistCnv::parseName( it->index(), ind_blk, ind_var );
109  if ( ind_blk != block_name ) {
110  std::cerr << "ERROR: Index for CWNT variable " << ind_var << " is in a different block: " << ind_blk
111  << std::endl;
112  }
113  desc += ind_var;
114  } else if ( it->dim( ndim ) > 1 ) {
115  desc += std::to_string( it->dim( ndim ) );
116  }
117 
118  for ( int i = ndim - 1; i >= 0; i-- ) {
119  desc += "][";
120  desc += std::to_string( it->dim( i ) );
121  }
122  if ( it->hasIndex() || it->length() > 1 ) { desc += ']'; }
123 
124  lowerRange = it->range().lower();
125  upperRange = it->range().upper();
126  desc += typ;
127  size += item_size * dimension;
128  }
129 } // namespace
130 
131 //-----------------------------------------------------------------------------
133 //-----------------------------------------------------------------------------
134 {
135  MsgStream log( msgSvc(), "RCWNTupleCnv" );
136  rtree = new TTree( desc.c_str(), nt->title().c_str() );
137  log << MSG::VERBOSE << "created tree id: " << rtree->GetName() << " title: " << nt->title() << " desc: " << desc
138  << endmsg;
139 
140  // Loop over the items
141 
142  std::string block_name, var_name;
143  long lowerRange, upperRange;
144  long size = 0;
145  long cursize, oldsize = 0;
146  std::vector<std::string> item_fullname;
147  // std::vector<long> item_size,item_size2;
148  std::vector<long> item_buf_pos, item_buf_len, item_buf_end;
149  std::vector<long> item_range_lower, item_range_upper;
151 
152  for ( const auto& i : nt->items() ) {
153  std::string item;
154 
155  visit( *i, [&]( const auto& data ) {
156  analyzeItem( this->rootVarType( data.type() ), &data, item, block_name, var_name, lowerRange, upperRange, size );
157  } );
158 
159  item_name.emplace_back( block_name, item );
160  cursize = size - oldsize;
161 
162  log << MSG::VERBOSE << "item: " << item << " type " << i->type() << " blk: " << block_name << " var: " << var_name
163  << " rng: " << lowerRange << " " << upperRange << " sz: " << size << " " << cursize
164  << " buf_pos: " << size - cursize << endmsg;
165 
166  item_fullname.push_back( var_name );
167  item_buf_pos.push_back( size - cursize );
168  item_buf_len.push_back( cursize );
169  item_buf_end.push_back( size );
170  item_range_lower.push_back( lowerRange );
171  item_range_upper.push_back( upperRange );
172 
173  oldsize = size;
174  }
175 
176  // Make a new buffer, and tell the ntuple where it is
177  char* buff = nt->setBuffer( new char[size] );
178 
179  log << MSG::VERBOSE << "Created buffer size: " << size << " at " << (void*)buff << endmsg;
180 
181  // Zero out the buffer to make ROOT happy
182  std::fill_n( buff, size, 0 );
183 
184  char* buf_pos = buff;
185 
186  auto end = item_name.cend();
187 
188  // Loop over items, creating a new branch for each one;
189  unsigned int i_item = 0;
190  for ( auto itr = item_name.cbegin(); itr != end; ++itr, ++i_item ) {
191 
192  buf_pos = buff + item_buf_pos[i_item];
193 
194  // log << MSG::WARNING << "adding TBranch " << i_item << " "
195  // << item_fullname[i_item]
196  // << " format: " << itr->second.c_str() << " at "
197  // << (void*) buf_pos << " (" << (void*) buff << "+"
198  // << (void*)item_buf_pos[i_item] << ")"
199  // << endmsg;
200 
201 #if ROOT_VERSION_CODE >= ROOT_VERSION( 5, 15, 0 )
202  auto br = new TBranch( rtree,
203 #else
204  TBranch* br = new TBranch(
205 #endif
206  item_fullname[i_item].c_str(), buf_pos, itr->second.c_str() );
207 
208  if ( itr->first != "AUTO_BLK" ) {
209  std::string title = itr->first;
210  title = itr->first + "::" + br->GetTitle();
211  br->SetTitle( title.c_str() );
212  }
213 
214  log << MSG::DEBUG << "adding TBranch " << br->GetTitle() << " at " << (void*)buf_pos << endmsg;
215 
216  // for index items with a limited range. Must be a TLeafI!
217  if ( item_range_lower[i_item] < item_range_upper[i_item] ) {
218  // log << MSG::VERBOSE << "\"" << item_fullname[i_item]
219  // << "\" is range limited " << item_range_lower[i_item] << " "
220  // << item_range_upper[i_item] << endmsg;
221  TLeafI* index = nullptr;
222  TObject* tobj = br->GetListOfLeaves()->FindObject( item_fullname[i_item].c_str() );
223  if ( tobj->IsA()->InheritsFrom( "TLeafI" ) ) {
224  index = dynamic_cast<TLeafI*>( tobj );
225 
226  if ( index ) {
227  index->SetMaximum( item_range_upper[i_item] );
228  // FIXME -- add for next version of ROOT
229  // index->SetMinimum( item_range_lower[i_item] );
230  } else {
231  log << MSG::ERROR << "Could dynamic cast to TLeafI: " << item_fullname[i_item] << endmsg;
232  }
233  }
234  }
235 
236  rtree->GetListOfBranches()->Add( br );
237  }
238 
239  log << MSG::INFO << "Booked TTree with ID: " << desc << " \"" << nt->title() << "\" in directory " << getDirectory()
240  << endmsg;
241 
242  return StatusCode::SUCCESS;
243 }
244 
245 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
246 
247 //-----------------------------------------------------------------------------
249 //-----------------------------------------------------------------------------
250 {
251  // Fill the tree;
252  const auto& items = nt->items();
253  std::accumulate( begin( items ), end( items ), nt->buffer(), []( char* dest, const INTupleItem* i ) {
254  return dest + visit( *i, [dest]( const auto& item ) { return saveItem( dest, item ); } );
255  } );
256 
257  rtree->Fill();
258  nt->reset();
259  return StatusCode::SUCCESS;
260 }
261 
262 //-----------------------------------------------------------------------------
263 StatusCode RootHistCnv::RCWNTupleCnv::readData( TTree* rtree, INTuple* ntup, long ievt )
264 //-----------------------------------------------------------------------------
265 {
266  if ( ievt >= rtree->GetEntries() ) {
267  MsgStream log( msgSvc(), "RCWNTupleCnv::readData" );
268  log << MSG::ERROR << "no more entries in tree to read. max: " << rtree->GetEntries() << " current: " << ievt
269  << endmsg;
270  return StatusCode::FAILURE;
271  }
272 
273  rtree->GetEvent( ievt );
274  ievt++;
275 
276  // copy data from ntup->buffer() to ntup->items()->buffer()
277  auto& items = ntup->items();
278  std::accumulate( begin( items ), end( items ), const_cast<const char*>( ntup->buffer() ),
279  []( const char* src, INTupleItem* i ) {
280  return src + visit( *i, [src]( auto& item ) { return loadItem( src, item ); } );
281  } );
282 
283  return StatusCode::SUCCESS;
284 }
285 
286 //-----------------------------------------------------------------------------
288 //-----------------------------------------------------------------------------
289 {
290  MsgStream log( msgSvc(), "RCWNTupleCnv::load" );
291 
292  StatusCode status;
293 
294  NTuple::Tuple* pObj = nullptr;
295 
296  std::string title = tree->GetTitle();
297  log << MSG::VERBOSE << "loading CWNT " << title << " at: " << tree << endmsg;
298 
299  status = m_ntupleSvc->create( CLID_ColumnWiseTuple, title, pObj );
300  INTuple* ntup = dynamic_cast<INTuple*>( pObj );
301  if ( !ntup ) { log << MSG::ERROR << "cannot dynamic cast to INTuple" << endmsg; }
302 
303  INTupleItem* item = nullptr;
304 
305  std::string itemName, indexName, item_type, itemTitle, blockName;
306  // long numEnt, numVar;
307  long size, totsize = 0;
309 
310  // numEnt = (int)tree->GetEntries();
311  // numVar = tree->GetNbranches();
312 
313  // loop over all branches (==leaves)
314  TObjArray* lbr = tree->GetListOfBranches();
315  TIter bitr( lbr );
316  while ( TObject* tobjb = bitr() ) {
317 
318  TBranch* br = (TBranch*)tobjb;
319  itemTitle = br->GetTitle();
320 
321  int ipos = itemTitle.find( "::" );
322  if ( ipos >= 0 ) {
323  blockName = itemTitle.substr( 0, ipos );
324  } else {
325  blockName = "";
326  }
327 
328  TObjArray* lf = br->GetListOfLeaves();
329 
330  TIter litr( lf );
331  while ( TObject* tobj = litr() ) {
332 
333  bool hasRange = false;
334  int indexRange = 0;
335  int itemSize;
336  item = nullptr;
337 
338  TLeaf* tl = dynamic_cast<TLeaf*>( tobj );
339  if ( !tl ) {
340  log << MSG::ERROR << "cannot dynamic cast to TLeaf" << endmsg;
341  return StatusCode::FAILURE;
342  }
343  itemName = tl->GetName();
344 
345  if ( blockName != "" ) {
346  log << MSG::DEBUG << "loading NTuple item " << blockName << "/" << itemName;
347  } else {
348  log << MSG::DEBUG << "loading NTuple item " << itemName;
349  }
350 
351  int arraySize{ 0 };
352  TLeaf* indexLeaf = tl->GetLeafCounter( arraySize );
353 
354  if ( arraySize == 0 ) { log << MSG::ERROR << "TLeaf counter size = 0. This should not happen!" << endmsg; }
355 
356  if ( indexLeaf ) {
357  // index Arrays and Matrices
358 
359  indexName = indexLeaf->GetName();
360  indexRange = indexLeaf->GetMaximum();
361  itemSize = indexRange * tl->GetLenType() * arraySize;
362 
363  log << "[" << indexName;
364 
365  // Just for Matrices
366  if ( arraySize != 1 ) { log << "][" << arraySize; }
367  log << "]";
368 
369  } else {
370  itemSize = tl->GetLenType() * arraySize;
371 
372  indexName = "";
373 
374  if ( arraySize == 1 ) {
375  // Simple items
376  } else {
377  // Arrays of constant size
378  log << "[" << arraySize << "]";
379  }
380  }
381 
382  log << endmsg;
383 
384  size = itemSize;
385  totsize += size;
386 
387  hasRange = tl->IsRange();
388 
389  itemList.emplace_back( tl, itemSize );
390 
391  // Integer
392  if ( tobj->IsA()->InheritsFrom( "TLeafI" ) ) {
393 
394  TLeafI* tli = dynamic_cast<TLeafI*>( tobj );
395  if ( tli ) {
396  if ( tli->IsUnsigned() ) {
397  unsigned long min = 0, max = 0;
398  if ( hasRange ) {
399  min = tli->GetMinimum();
400  max = tli->GetMaximum();
401  }
402 
403  item = createNTupleItem( itemName, blockName, indexName, indexRange, arraySize, min, max, ntup, hasRange );
404  } else {
405  long min = 0, max = 0;
406  if ( hasRange ) {
407  min = tli->GetMinimum();
408  max = tli->GetMaximum();
409  }
410 
411  item = createNTupleItem( itemName, blockName, indexName, indexRange, arraySize, min, max, ntup, hasRange );
412  }
413  } else {
414  log << MSG::ERROR << "cannot dynamic cast to TLeafI" << endmsg;
415  }
416 
417  // Float
418  } else if ( tobj->IsA()->InheritsFrom( "TLeafF" ) ) {
419  float min = 0., max = 0.;
420 
421  TLeafF* tlf = dynamic_cast<TLeafF*>( tobj );
422  if ( tlf ) {
423  if ( hasRange ) {
424  min = float( tlf->GetMinimum() );
425  max = float( tlf->GetMaximum() );
426  }
427  } else {
428  log << MSG::ERROR << "cannot dynamic cast to TLeafF" << endmsg;
429  }
430 
431  item = createNTupleItem( itemName, blockName, indexName, indexRange, arraySize, min, max, ntup, hasRange );
432 
433  // Double
434  } else if ( tobj->IsA()->InheritsFrom( "TLeafD" ) ) {
435  double min = 0., max = 0.;
436 
437  TLeafD* tld = dynamic_cast<TLeafD*>( tobj );
438  if ( tld ) {
439  if ( hasRange ) {
440  min = tld->GetMinimum();
441  max = tld->GetMaximum();
442  }
443  } else {
444  log << MSG::ERROR << "cannot dynamic cast to TLeafD" << endmsg;
445  }
446 
447  item = createNTupleItem( itemName, blockName, indexName, indexRange, arraySize, min, max, ntup, hasRange );
448 
449  } else {
450  log << MSG::ERROR << "Uknown data type" << endmsg;
451  }
452 
453  if ( item ) {
454  ntup->add( item ).ignore();
455  } else {
456  log << MSG::ERROR << "Unable to create ntuple item \"" << itemName << "\"" << endmsg;
457  }
458 
459  } // end litr
460  } // end bitr
461 
462  log << MSG::DEBUG << "Total buffer size of NTuple: " << totsize << " Bytes." << endmsg;
463 
464  char* buf = ntup->setBuffer( new char[totsize] );
465  char* bufpos = buf;
466 
467  int ts = 0;
468  for ( const auto& iitr : itemList ) {
469  TLeaf* leaf = iitr.first;
470  int isize = iitr.second;
471 
472  log << MSG::VERBOSE << "setting TBranch " << leaf->GetBranch()->GetName() << " buffer at " << (void*)bufpos
473  << endmsg;
474 
475  leaf->GetBranch()->SetAddress( (void*)bufpos );
476 
477  // //testing
478  // if (leaf->IsA()->InheritsFrom("TLeafI")) {
479  // for (int ievt=0; ievt<5; ievt++) {
480  // leaf->GetBranch()->GetEvent(ievt);
481  // int *idat = (int*)bufpos;
482  // log << MSG::WARNING << leaf->GetName() << ": " << ievt << " "
483  // << *idat << endmsg;
484 
485  // }
486  // }
487 
488  ts += isize;
489 
490  bufpos += isize;
491  }
492 
493  if ( totsize != ts ) { log << MSG::ERROR << "buffer size mismatch: " << ts << " " << totsize << endmsg; }
494 
495  refpObject = ntup;
496 
497  return StatusCode::SUCCESS;
498 }
499 
500 // Instantiation of a static factory class used by clients to create
501 // instances of this service
MSG::DEBUG
@ DEBUG
Definition: IMessageSvc.h:25
NTuple::_Data::range
virtual const ItemRange & range() const =0
Access the range if specified.
RCWNTupleCnv.h
std::string
STL class.
details::size
constexpr auto size(const T &, Args &&...) noexcept
Definition: AnyDataWrapper.h:22
Gaudi.Configuration.log
log
Definition: Configuration.py:30
MSG::INFO
@ INFO
Definition: IMessageSvc.h:25
std::vector< std::string >
std::string::find
T find(T... args)
DECLARE_CONVERTER
#define DECLARE_CONVERTER(x)
Definition: Converter.h:160
max
EventIDBase max(const EventIDBase &lhs, const EventIDBase &rhs)
Definition: EventIDBase.h:225
DataTypeInfo::USHORT
@ USHORT
Definition: DataTypeInfo.h:36
INTuple::buffer
virtual const char * buffer() const =0
Access data buffer (CONST)
DataTypeInfo::ULONG
@ ULONG
Definition: DataTypeInfo.h:38
RootHistCnv::RCWNTupleCnv::writeData
StatusCode writeData(TTree *rtree, INTuple *pObject) override
Write N tuple data.
Definition: RCWNTupleCnv.cpp:248
std::vector::push_back
T push_back(T... args)
INTuple::setBuffer
virtual char * setBuffer(char *buff)=0
Attach data buffer.
DataTypeInfo::LONG
@ LONG
Definition: DataTypeInfo.h:42
NTuple::_Data
Abstract class describing basic data in an Ntuple.
Definition: NTuple.h:48
compareOutputFiles.target
target
Definition: compareOutputFiles.py:489
DataTypeInfo::DOUBLE
@ DOUBLE
Definition: DataTypeInfo.h:45
INTuple::items
virtual ItemContainer & items()=0
Access item container.
StatusCode
Definition: StatusCode.h:65
DataTypeInfo::SHORT
@ SHORT
Definition: DataTypeInfo.h:40
std::cerr
CLHEP::begin
double * begin(CLHEP::HepVector &v)
Definition: TupleAlg.cpp:45
RootHistCnv::parseName
bool parseName(const std::string &full, std::string &blk, std::string &var)
Definition: RNTupleCnv.cpp:240
compareRootHistos.ts
ts
Definition: compareRootHistos.py:489
RootHistCnv::RCWNTupleCnv
Definition: RCWNTupleCnv.h:30
std::string::c_str
T c_str(T... args)
std::to_string
T to_string(T... args)
NTuple.h
INTuple
Definition: INTuple.h:91
std::runtime_error
STL class.
std::accumulate
T accumulate(T... args)
INTuple::add
virtual StatusCode add(INTupleItem *item)=0
Add an item row to the N tuple.
endmsg
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:203
min
EventIDBase min(const EventIDBase &lhs, const EventIDBase &rhs)
Definition: EventIDBase.h:212
INTupleItem
Definition: INTuple.h:37
MsgStream
Definition: MsgStream.h:34
StatusCode::ignore
const StatusCode & ignore() const
Allow discarding a StatusCode without warning.
Definition: StatusCode.h:139
DataTypeInfo::FLOAT
@ FLOAT
Definition: DataTypeInfo.h:44
gaudirun.dest
dest
Definition: gaudirun.py:226
std::string::substr
T substr(T... args)
std::vector::emplace_back
T emplace_back(T... args)
DataTypeInfo::UCHAR
@ UCHAR
Definition: DataTypeInfo.h:35
DataTypeInfo::UINT
@ UINT
Definition: DataTypeInfo.h:37
MSG::VERBOSE
@ VERBOSE
Definition: IMessageSvc.h:25
StatusCode::SUCCESS
constexpr static const auto SUCCESS
Definition: StatusCode.h:100
std::endl
T endl(T... args)
DataTypeInfo::BOOL
@ BOOL
Definition: DataTypeInfo.h:43
RootHistCnv::RCWNTupleCnv::readData
StatusCode readData(TTree *rtree, INTuple *pObject, long ievt) override
Read N tuple data.
Definition: RCWNTupleCnv.cpp:263
NTuple::Tuple
Abstract base class which allows the user to interact with the actual N tuple implementation.
Definition: NTuple.h:387
std::vector::cbegin
T cbegin(T... args)
MSG::ERROR
@ ERROR
Definition: IMessageSvc.h:25
INTuple::title
virtual const std::string & title() const =0
Object title.
DataTypeInfo::ULONGLONG
@ ULONGLONG
Definition: DataTypeInfo.h:55
RootHistCnv::createNTupleItem
INTupleItem * createNTupleItem(std::string itemName, std::string blockName, std::string indexName, int indexRange, int arraySize, TYP min, TYP max, INTuple *ntup, bool hasRange)
Add an item of a given type to the N tuple.
Definition: RNTupleCnv.cpp:265
std::memcpy
T memcpy(T... args)
DataTypeInfo::LONGLONG
@ LONGLONG
Definition: DataTypeInfo.h:54
std::vector::cend
T cend(T... args)
AsyncIncidents.msgSvc
msgSvc
Definition: AsyncIncidents.py:34
IOTest.end
end
Definition: IOTest.py:123
Converter::msgSvc
SmartIF< IMessageSvc > & msgSvc() const
Retrieve pointer to message service.
Definition: Converter.cpp:105
StatusCode::FAILURE
constexpr static const auto FAILURE
Definition: StatusCode.h:101
RootHistCnv::RNTupleCnv::rootVarType
virtual std::string rootVarType(int)
Return ROOT type info:
Definition: RNTupleCnv.cpp:204
RootHistCnv::RCWNTupleCnv::load
StatusCode load(TTree *tree, INTuple *&refpObject) override
Create the transient representation of an object.
Definition: RCWNTupleCnv.cpp:287
RootHistCnv::RCWNTupleCnv::book
StatusCode book(const std::string &desc, INTuple *pObject, TTree *&tree) override
Book the N tuple.
Definition: RCWNTupleCnv.cpp:132
std::fill_n
T fill_n(T... args)
DataTypeInfo::INT
@ INT
Definition: DataTypeInfo.h:41
INTupleSvc.h
DataTypeInfo::CHAR
@ CHAR
Definition: DataTypeInfo.h:39
MsgStream.h
GaudiPython.Pythonizations.items
items
Definition: Pythonizations.py:546