Typedefs | Functions
FloatArrayGainCalibration_tool.cc File Reference
#include "FloatArrayGainCalibration.h"
#include "dunecore/ArtSupport/DuneToolManager.h"
#include "dunecore/DuneInterface/Data/RunData.h"
#include "dunecore/DuneInterface/Tool/RunDataTool.h"
#include "dunecore/DuneInterface/Tool/FloatArrayTool.h"
#include "dunecore/DuneCommon/Utility/RootParFormula.h"
#include <iostream>
#include <sstream>
#include <iomanip>

Go to the source code of this file.

Typedefs

using Index = unsigned int
 

Functions

template<class T >
std::ostream & operator<< (std::ostream &lhs, const std::vector< T > &vals)
 

Typedef Documentation

using Index = unsigned int

Definition at line 19 of file FloatArrayGainCalibration_tool.cc.

Function Documentation

template<class T >
std::ostream& operator<< ( std::ostream &  lhs,
const std::vector< T > &  vals 
)

Definition at line 25 of file FloatArrayGainCalibration_tool.cc.

25  {
26  bool first = true;
27  for ( const T& val : vals ) {
28  if ( first ) first = false;
29  else lhs << ", ";
30  lhs << val;
31  }
32  return lhs;
33 }