#include <iostream>#include <string>#include <vector>#include "Rtypes.h"Go to the source code of this file.
Namespaces | |
| namespace | Anp |
Classes | |
| class | Anp::DataItem< K, D > |
Typedefs | |
| typedef DataItem< std::string, Float_t > | StringData |
| typedef DataItem< Short_t, Float_t > | Data |
| typedef std::vector< Anp::Data > | DataVec |
| typedef DataVec::const_iterator | DataIter |
| typedef DataVec::iterator | DataIterator |
Functions | |
| template<class K, class D> | |
| bool | operator< (const DataItem< K, D > &lhs, const DataItem< K, D > &rhs) |
| template<class K, class D> | |
| bool | operator< (const DataItem< K, D > &lhs, const K &rhs) |
| template<class K, class D> | |
| bool | operator< (const K &lhs, const DataItem< K, D > &rhs) |
| template<class K, class D> | |
| bool | operator== (const DataItem< K, D > &lhs, const DataItem< K, D > &rhs) |
| template<class K, class D> | |
| bool | operator== (const DataItem< K, D > &lhs, const K &rhs) |
| template<class K, class D> | |
| bool | operator== (const K &lhs, const DataItem< K, D > &rhs) |
| std::ostream & | operator<< (std::ostream &os, const Data &data) |
|
|
|
|
Definition at line 66 of file DataItem.h. Referenced by Anp::Track::DataBegIterator(), Anp::Event::DataBegIterator(), Anp::Track::DataEndIterator(), Anp::Event::DataEndIterator(), Anp::Track::Erase(), and Anp::Event::Erase(). |
|
|
Definition at line 64 of file DataItem.h. Referenced by Anp::FillkNN::Find(), and Anp::FillkNN::Run(). |
|
|
Definition at line 62 of file DataItem.h. |
|
||||||||||||||||
|
Definition at line 115 of file DataItem.h. 00116 {
00117 return (lhs < rhs.Key());
00118 }
|
|
||||||||||||||||
|
Definition at line 109 of file DataItem.h. 00110 {
00111 return (lhs.Key() < rhs);
00112 }
|
|
||||||||||||||||
|
Definition at line 103 of file DataItem.h. 00104 {
00105 return (lhs.Key() < rhs.Key());
00106 }
|
|
||||||||||||
|
Definition at line 138 of file DataItem.h. References Anp::DataItem< K, D >::Data(), and Anp::DataItem< K, D >::Key(). 00139 {
00140 os << "data[" << data.Key() << "]=" << data.Data();
00141 return os;
00142 }
|
|
||||||||||||||||
|
Definition at line 133 of file DataItem.h. References Anp::DataItem< K, D >::Key(). 00134 {
00135 return (lhs == rhs.Key());
00136 }
|
|
||||||||||||||||
|
Definition at line 127 of file DataItem.h. References Anp::DataItem< K, D >::Key(). 00128 {
00129 return (lhs.Key() == rhs);
00130 }
|
|
||||||||||||||||
|
Definition at line 121 of file DataItem.h. References Anp::DataItem< K, D >::Key(). 00122 {
00123 return (lhs.Key() == rhs.Key());
00124 }
|
1.3.9.1