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

◆ operator<<() [1/2]

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

Definition at line 53 of file CSCUpgradeMotherboardLUTGenerator.h.

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

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

◆ operator<<() [2/2]

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

Definition at line 69 of file CSCUpgradeMotherboardLUTGenerator.h.

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

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

mps_fire.i
i
Definition: mps_fire.py:355
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
findQualityFiles.v
v
Definition: findQualityFiles.py:179