CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
CSCStripData.cc File Reference
#include "RecoLocalMuon/CSCRecHitD/src/CSCStripData.h"
#include <iostream>
#include <iterator>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const CSCStripData &data)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const CSCStripData data 
)

Definition at line 9 of file CSCStripData.cc.

References filterCSVwithJSON::copy, CSCStripData::istrip_, CSCStripData::ntbins_, CSCStripData::ph_, CSCStripData::phmax_, CSCStripData::phRaw_, and CSCStripData::tmax_.

9  {
10  os << "CSCStripData " << std::endl
11  << "------------ " << std::endl
12  << "no. of time bins = " << data.ntbins_ << std::endl
13  << "strip = " << data.istrip_
14  << ", phmax = " << data.phmax_
15  << ", tmax = " << data.tmax_ << std::endl
16  << "phraw: " << std::endl;
17  std::copy( data.phRaw_.begin(), data.phRaw_.end(), std::ostream_iterator<int>(os,"\n") );
18  os << "ph: " << std::endl;
19  std::copy( data.ph_.begin(), data.ph_.end(), std::ostream_iterator<float>(os,"\n") );
20  return os;
21 }
std::vector< float > ph_
Definition: CSCStripData.h:68
std::vector< int > phRaw_
Definition: CSCStripData.h:67
static const int ntbins_
Definition: CSCStripData.h:63