#include "geometry/Channel.hh"
#include "geometry/Chip.hh"
#include "geometry/Board.hh"
#include "geometry/Dif.hh"
#include "geometry/Chamber.hh"
#include "event/ChannelHit.hh"
#include <iostream>
#include "tools/Log.hh"
Include dependency graph for Channel.cpp:
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &out, const Channel &x) |
std::ostream& operator<< | ( | std::ostream & | out, | |
const Channel & | x | |||
) |
Definition at line 16 of file Channel.cpp.
00016 { 00017 out << " " << x.description << " id " << x.hardId 00018 << ", position [x/y/z] @[" << x.getX() << ", " << x.getY() << ", " << x.getZ() << "], " 00019 << "[col/row]=>["<< x.column << "/" << x.row << "]"; 00020 return(out); 00021 } // operator <<