NuTo
Numerics Tool
CellStorage.h
Go to the documentation of this file.
1 #pragma once
2 #include <boost/ptr_container/ptr_vector.hpp>
5 #include "nuto/base/Group.h"
6 
7 namespace NuTo
8 {
9 
10 class IntegrationTypeBase;
11 
14 {
15 public:
22  int cellStartId = 0);
23 
24 private:
25  boost::ptr_vector<CellInterface> mCells;
26 };
27 } /* NuTo */
Group< CellInterface > AddCells(Group< ElementCollectionFem > elements, const IntegrationTypeBase &integrationType, int cellStartId=0)
creates and stores cells from elements, an integration type and a continuous id
Definition: CellStorage.cpp:6
stores and creates integration cells
Definition: CellStorage.h:13
standard abstract class for all integration types
Definition: IntegrationTypeBase.h:14
Definition: Exception.h:6