See header file.
More...
Go to the source code of this file.
|
| static std::string | to_string (std::vector< size_t > v) |
| static boost::dynamic_bitset | lshift (boost::dynamic_bitset<> const &b, int n) |
| static boost::dynamic_bitset | rshift (boost::dynamic_bitset<> const &b, int n) |
| static void | updateBinHits (std::vector< boost::dynamic_bitset<> > &binHits, unsigned layer, boost::dynamic_bitset<> const &b) |
| static int | layersHit (FPGATrackSimRoad &r) |
See header file.
- Author
- Riley Xu - riley.nosp@m..xu@.nosp@m.cern..nosp@m.ch
- Date
- October 31st, 2020
Definition in file FPGATrackSimHough1DShiftTool.cxx.
◆ layersHit()
◆ lshift()
| boost::dynamic_bitset lshift |
( |
boost::dynamic_bitset<> const & | b, |
|
|
int | n ) |
|
inlinestatic |
◆ rshift()
| boost::dynamic_bitset rshift |
( |
boost::dynamic_bitset<> const & | b, |
|
|
int | n ) |
|
inlinestatic |
◆ to_string()
| std::string to_string |
( |
std::vector< size_t > | v | ) |
|
|
inlinestatic |
Definition at line 552 of file FPGATrackSimHough1DShiftTool.cxx.
553{
554 std::ostringstream oss;
555 oss << "[";
557 {
558 std::copy(
v.begin(),
v.end()-1, std::ostream_iterator<size_t>(oss,
", "));
560 }
561 oss << "]";
562 return oss.str();
563}
◆ updateBinHits()
| void updateBinHits |
( |
std::vector< boost::dynamic_bitset<> > & | binHits, |
|
|
unsigned | layer, |
|
|
boost::dynamic_bitset<> const & | b ) |
|
inlinestatic |