Chaste  Release::2017.1
CryptProjectionStatistics.cpp
1 /*
2 
3 Copyright (c) 2005-2017, University of Oxford.
4 All rights reserved.
5 
6 University of Oxford means the Chancellor, Masters and Scholars of the
7 University of Oxford, having an administrative office at Wellington
8 Square, Oxford OX1 2JD, UK.
9 
10 This file is part of Chaste.
11 
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions are met:
14  * Redistributions of source code must retain the above copyright notice,
15  this list of conditions and the following disclaimer.
16  * Redistributions in binary form must reproduce the above copyright notice,
17  this list of conditions and the following disclaimer in the documentation
18  and/or other materials provided with the distribution.
19  * Neither the name of the University of Oxford nor the names of its
20  contributors may be used to endorse or promote products derived from this
21  software without specific prior written permission.
22 
23 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
27 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32 OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 
34 */
35 #include "CryptProjectionStatistics.hpp"
36 #include "RandomNumberGenerator.hpp"
37 
42 bool CellsRadiusComparison(const std::pair<CellPtr, double> lhs, const std::pair<CellPtr, double> rhs)
43 {
44  return lhs.second < rhs.second;
45 }
46 
48  : AbstractCryptStatistics(rCrypt)
49 {
50 }
51 
52 bool CryptProjectionStatistics::CellIsInSection(double angle, const c_vector<double,2>& rCellPosition, double widthOfSection)
53 {
54  // Get corresponding 3D position of closest point on line
55  c_vector<double,2> line_position;
56  line_position[0] = norm_2(rCellPosition)*cos(angle);
57  line_position[1] = norm_2(rCellPosition)*sin(angle);
58 
59  double distance_between_cell_and_line = norm_2(rCellPosition - line_position);
60 
61  return (distance_between_cell_and_line <= widthOfSection);
62 }
63 
64 std::vector<CellPtr> CryptProjectionStatistics::GetCryptSection(double angle)
65 {
66  if (angle == DBL_MAX)
67  {
68  angle = M_PI - 2*M_PI*RandomNumberGenerator::Instance()->ranf();
69  }
70 
71  assert(angle>=-M_PI && angle<=M_PI);
72 
73  std::list<std::pair<CellPtr, double> > cells_list; // the second entry is the radius (needed for sorting)
74 
75  // Loop over cells and add to the store if they are within a cell's radius of the
76  // specified line
78  cell_iter != mrCrypt.End();
79  ++cell_iter)
80  {
81  if (CellIsInSection(angle, mrCrypt.GetLocationOfCellCentre(*cell_iter)))
82  {
83  // Set up a pair, equal to (cell,r) and insert
84  std::pair<CellPtr, double> pair(*cell_iter, norm_2(mrCrypt.GetLocationOfCellCentre(*cell_iter)));
85  cells_list.push_back(pair);
86  }
87  }
88 
89  // Sort the list
90  cells_list.sort(CellsRadiusComparison);
91 
92  // Copy to a vector
93  std::vector<CellPtr> ordered_cells;
94  for (std::list<std::pair<CellPtr, double> >::iterator iter = cells_list.begin();
95  iter != cells_list.end();
96  ++iter)
97  {
98  ordered_cells.push_back(iter->first);
99  }
100 
101  return ordered_cells;
102 }
bool CellIsInSection(double angle, const c_vector< double, 2 > &rCellPosition, double widthOfSection=0.6)
MeshBasedCellPopulation< 2 > & mrCrypt
static RandomNumberGenerator * Instance()
std::vector< CellPtr > GetCryptSection(double angle=DBL_MAX)
CryptProjectionStatistics(MeshBasedCellPopulation< 2 > &rCrypt)
c_vector< double, SPACE_DIM > GetLocationOfCellCentre(CellPtr pCell)