Version: SMASH-3.2
grid.cc File Reference
#include "smash/grid.h"
#include <stdexcept>
#include "smash/algorithms.h"
#include "smash/fourvector.h"
#include "smash/logging.h"
#include "smash/numeric_cast.h"
#include "smash/particledata.h"
#include "smash/threevector.h"

Go to the source code of this file.

Classes

struct  smash::NeighborLookup
 A strust containing the informations needed to search the neighboring cell. More...
 

Namespaces

 smash
 

Enumerations

enum class  smash::NeedsToWrap { smash::PlusLength , smash::No , smash::MinusLength }
 The options determining what to do if a particle flies out of the grids PlusLength: Used if a periodic boundary condition is applied and a particle passes through the lower bound of the grid. More...
 

Functions

template<typename T >
static std::ostream & std::operator<< (std::ostream &out, const std::vector< T > &v)
 Convenient printout function for a vector. More...
 
template<typename T >
static std::ostream & std::operator<< (std::ostream &out, const std::initializer_list< T > &v)
 Convenient printout function for an initializer list. More...
 
template<typename T , std::size_t N>
static std::ostream & std::operator<< (std::ostream &out, const std::array< T, N > &a)
 Convenient printout function for an array. More...
 

Variables

static constexpr int smash::LGrid = LogArea::Grid::id
 
static const std::initializer_list< GridBase::SizeType > smash::ZERO {0}
 
static const std::initializer_list< GridBase::SizeType > smash::ZERO_ONE {0, 1}
 
static const std::initializer_list< GridBase::SizeType > smash::MINUS_ONE_ZERO {-1, 0}
 
static const std::initializer_list< GridBase::SizeType > smash::MINUS_ONE_ZERO_ONE
 

Function Documentation

◆ operator<<() [1/3]

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

Convenient printout function for a vector.

Parameters
[in]outoutput stream
[in]vvector to print out

Definition at line 28 of file grid.cc.

28  {
29  auto column = out.tellp();
30  out << "{ ";
31  for (const auto &x : v) {
32  if (out.tellp() - column >= 100) {
33  out << '\n';
34  column = out.tellp();
35  }
36  out << x << ' ';
37  }
38  return out << '}';
39 }

◆ operator<<() [2/3]

template<typename T >
static std::ostream& std::operator<< ( std::ostream &  out,
const std::initializer_list< T > &  v 
)
static

Convenient printout function for an initializer list.

Parameters
[in]outoutput stream
[in]vinitializer list to print out

Definition at line 47 of file grid.cc.

48  {
49  auto column = out.tellp();
50  out << "{ ";
51  for (const auto &x : v) {
52  if (out.tellp() - column >= 100) {
53  out << '\n';
54  column = out.tellp();
55  }
56  out << x << ' ';
57  }
58  return out << '}';
59 }

◆ operator<<() [3/3]

template<typename T , std::size_t N>
static std::ostream& std::operator<< ( std::ostream &  out,
const std::array< T, N > &  a 
)
static

Convenient printout function for an array.

Parameters
[in]outoutput stream
[in]aarray to print out

Definition at line 67 of file grid.cc.

67  {
68  auto column = out.tellp();
69  out << "{ ";
70  for (const auto &x : a) {
71  if (out.tellp() - column >= 100) {
72  out << '\n';
73  column = out.tellp();
74  }
75  out << x << ' ';
76  }
77  return out << '}';
78 }