File indexing completed on 2023-03-17 11:19:06
0001
0002
0003 #include "RecoLocalMuon/CSCRecHitD/src/CSCStripData.h"
0004
0005 #include <iostream>
0006
0007 #include <iterator>
0008
0009 std::ostream& operator<<(std::ostream& os, const CSCStripData& data) {
0010 os << "CSCStripData " << std::endl
0011 << "------------ " << std::endl
0012 << "no. of time bins = " << data.ntbins_ << std::endl
0013 << ", phmax = " << data.phmax_ << ", tmax = " << data.tmax_ << std::endl
0014 << "phraw: " << std::endl;
0015 std::copy(data.phRaw_.begin(), data.phRaw_.end(), std::ostream_iterator<int>(os, "\n"));
0016 os << "ph: " << std::endl;
0017 std::copy(data.ph_.begin(), data.ph_.end(), std::ostream_iterator<float>(os, "\n"));
0018 return os;
0019 }