Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
Heed::DynArr< T >::IndexingProvider< D > Class Template Reference

#include <AbsArr.h>

Public Member Functions

 IndexingProvider (DynArr< D > &farr, long fq_deref_ind, long fcurrent_pos)
 
 operator D& () const
 
D & operator= (const D &f)
 
IndexingProvider< D > & operator[] (long n)
 
const IndexingProvider< D > & operator[] (long n) const
 

Public Attributes

DynArr< D > & arr
 
long q_deref_ind
 
long current_pos
 

Detailed Description

template<class T>
template<class D>
class Heed::DynArr< T >::IndexingProvider< D >

Definition at line 1559 of file AbsArr.h.

Constructor & Destructor Documentation

◆ IndexingProvider()

template<class T>
template<class D>
Heed::DynArr< T >::IndexingProvider< D >::IndexingProvider ( DynArr< D > & farr,
long fq_deref_ind,
long fcurrent_pos )
inline

Member Function Documentation

◆ operator D&()

template<class T>
template<class D>
Heed::DynArr< T >::IndexingProvider< D >::operator D& ( ) const
inline

Definition at line 1566 of file AbsArr.h.

1566 {
1567 if (q_deref_ind != arr.qel.get_qel()) {
1568 mcerr << "ERROR in IndexingProvider::operator D& (): q_deref_ind != "
1569 "qel.get_qel()\n";
1570 Iprint2n(mcerr, q_deref_ind, arr.qel.get_qel());
1571 mcerr << "Type of T is (in internal notations) " << typeid(D).name()
1572 << '\n';
1573 spexit(mcerr);
1574 }
1575#ifdef ALR_CHECK_BOUND
1576 return arr.el[current_pos];
1577#else
1578 return arr.el.acu(current_pos);
1579#endif
1580 }
#define spexit(stream)
#define Iprint2n(file, name1, name2)
Definition prstream.h:219

◆ operator=()

template<class T>
template<class D>
D & Heed::DynArr< T >::IndexingProvider< D >::operator= ( const D & f)
inline

Definition at line 1581 of file AbsArr.h.

1581 {
1582 if (q_deref_ind != arr.get_qel().get_qel()) {
1583 mcerr << "ERROR in T& IndexingProvider::operator=(T& f): q_deref_ind "
1584 "!= arr.get_qel().get_qel()\n";
1585 Iprint2n(mcerr, q_deref_ind, arr.get_qel().get_qel());
1586 mcerr << "Type of T is (in internal notations) " << typeid(D).name()
1587 << '\n';
1588 spexit(mcerr);
1589 }
1590#ifdef ALR_CHECK_BOUND
1591 arr.ac_lin(current_pos) = f;
1592#else
1593 arr.acu_lin(current_pos) = f;
1594#endif
1595 // return arr.el[current_pos];
1596 }

◆ operator[]() [1/2]

template<class T>
template<class D>
IndexingProvider< D > & Heed::DynArr< T >::IndexingProvider< D >::operator[] ( long n)
inline

Definition at line 1598 of file AbsArr.h.

1598 {
1599 if (q_deref_ind >= arr.get_qel().get_qel()) {
1600 mcerr << "ERROR in DynArr::IndexingProvider& DynArr::operator[](long "
1601 "n): q_deref_ind >= arr.get_qel().get_qel()\n";
1602 Iprint2n(mcerr, q_deref_ind, arr.get_qel().get_qel());
1603 mcerr << "Type of T is (in internal notations) " << typeid(D).name()
1604 << '\n';
1605 spexit(mcerr);
1606 }
1607#ifdef ALR_CHECK_EACH_BOUND
1608 if (n < 0 || n >= arr.qel.acu(q_deref_ind)) {
1609 mcerr << "Error in IndexingProvider<D>& "
1610 "IndexingProvider::operator[](long n): n < 0 || n >= "
1611 "qel.acu(q_deref_ind)\n";
1612 Iprint2n(mcout, n, arr.qel.acu(q_deref_ind));
1613 mcerr << "Type of T is (in internal notations) " << typeid(T).name()
1614 << '\n';
1615 spexit(mcerr);
1616 }
1617#endif
1618 current_pos += n * arr.get_cum_qel().acu(q_deref_ind);
1619 q_deref_ind++;
1620 return *this;
1621 }

◆ operator[]() [2/2]

template<class T>
template<class D>
const IndexingProvider< D > & Heed::DynArr< T >::IndexingProvider< D >::operator[] ( long n) const
inline

Definition at line 1623 of file AbsArr.h.

1623 {
1624 if (q_deref_ind >= arr.get_qel().get_qel()) {
1625 mcerr << "ERROR in DynArr::IndexingProvider& DynArr::operator[](long "
1626 "n): q_deref_ind >= arr.get_qel().get_qel()\n";
1627 Iprint2n(mcerr, q_deref_ind, arr.get_qel().get_qel());
1628 mcerr << "Type of T is (in internal notations) " << typeid(D).name()
1629 << '\n';
1630 spexit(mcerr);
1631 }
1632#ifdef ALR_CHECK_EACH_BOUND
1633 if (n < 0 || n >= arr.qel.acu(q_deref_ind)) {
1634 mcerr << "Error in IndexingProvider<D>& "
1635 "IndexingProvider::operator[](long n): n < 0 || n >= "
1636 "qel.acu(q_deref_ind)\n";
1637 Iprint2n(mcout, n, arr.qel.acu(q_deref_ind));
1638 mcerr << "Type of T is (in internal notations) " << typeid(T).name()
1639 << '\n';
1640 spexit(mcerr);
1641 }
1642#endif
1643 current_pos += n * arr.get_cum_qel().acu(q_deref_ind);
1644 q_deref_ind++;
1645 return *this;
1646 }

Member Data Documentation

◆ arr

template<class T>
template<class D>
DynArr<D>& Heed::DynArr< T >::IndexingProvider< D >::arr

Definition at line 1561 of file AbsArr.h.

Referenced by IndexingProvider(), operator D&(), operator=(), operator[](), and operator[]().

◆ current_pos

template<class T>
template<class D>
long Heed::DynArr< T >::IndexingProvider< D >::current_pos
mutable

Definition at line 1563 of file AbsArr.h.

Referenced by IndexingProvider(), operator D&(), operator=(), operator[](), and operator[]().

◆ q_deref_ind

template<class T>
template<class D>
long Heed::DynArr< T >::IndexingProvider< D >::q_deref_ind
mutable

Definition at line 1562 of file AbsArr.h.

Referenced by IndexingProvider(), operator D&(), operator=(), operator[](), and operator[]().


The documentation for this class was generated from the following file: