CMS 3D CMS Logo

Classes | Functions
CSCUpgradeMotherboardLUTGenerator.h File Reference
#include "DataFormats/MuonDetId/interface/CSCTriggerNumbering.h"
#include "DataFormats/MuonDetId/interface/CSCDetId.h"
#include "Geometry/CSCGeometry/interface/CSCGeometry.h"
#include "Geometry/GEMGeometry/interface/GEMGeometry.h"
#include <vector>

Go to the source code of this file.

Classes

class  CSCUpgradeMotherboardLUTGenerator
 

Functions

template<typename T >
std::ostream & operator<< (std::ostream &os, const std::vector< std::pair< T, T > > &v)
 
template<typename T >
std::ostream & operator<< (std::ostream &os, const std::vector< T > &v)
 

Function Documentation

template<typename T >
std::ostream& operator<< ( std::ostream &  os,
const std::vector< std::pair< T, T > > &  v 
)

Definition at line 51 of file CSCUpgradeMotherboardLUTGenerator.h.

References mps_fire::i, AlCaHLTBitMon_ParallelJobs::p, and findQualityFiles::v.

52 {
53  int i = 0;
54  os << "{" << std::endl;
55  for(const auto& p : v) {
56  os << " {" << p.first << ", " << p.second << "}, ";
57  if (i%8==0) os << std::endl;
58  i++;
59  }
60  os << "}" << std::endl;
61  os << std::endl;
62 
63  return os;
64 }
template<typename T >
std::ostream& operator<< ( std::ostream &  os,
const std::vector< T > &  v 
)

Definition at line 67 of file CSCUpgradeMotherboardLUTGenerator.h.

References mps_fire::i, AlCaHLTBitMon_ParallelJobs::p, and findQualityFiles::v.

68 {
69  int i = 0;
70  os << "{" << std::endl;
71  for(const auto& p : v) {
72  os << " " << p << ",";
73  if (i%10==0) os << std::endl;
74  i++;
75  }
76  os << "}" << std::endl;
77  os << std::endl;
78 
79  return os;
80 }