ATLAS Offline Software
Loading...
Searching...
No Matches
TIDAFeatureStore.h File Reference

Generic storage container - to contain objects wrapped as Features. More...

#include <iostream>
#include <map>
#include "TIDAFeature.h"
Include dependency graph for TIDAFeatureStore.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  TIDA::FeatureStore

Namespaces

namespace  TIDA
 Test for xAOD.

Functions

std::ostream & operator<< (std::ostream &s, const TIDA::FeatureStore &f)

Detailed Description

Generic storage container - to contain objects wrapped as Features.

Author
mark sutton
Date
Fri 7 Aug 2015 15:00:32 CEST

Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration

Definition in file TIDAFeatureStore.h.

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & s,
const TIDA::FeatureStore & f )
inline

Definition at line 83 of file TIDAFeatureStore.h.

83 {
84 TIDA::FeatureStore::const_iterator itr = f.begin();
85 TIDA::FeatureStore::const_iterator iend = f.end();
86 while( itr!=iend ) {
87 if ( itr->first.size()>5 ) s << "\t[ " << itr->first << ":\t" << itr->second << " ]\n";
88 else s << "\t[ " << itr->first << ":\t\t" << itr->second << " ]\n";
89 ++itr;
90 }
91 return s;
92}