EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicStlFacetAssembly.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicStlFacetAssembly.h
1 //
2 // AYK (ayk@bnl.gov), 2014/01/08
3 //
4 // EicRoot CAD manipulation routines; facet assembly class;
5 //
6 
7 #include <EicStlFacet.h>
8 
9 #ifndef _EIC_STL_FACET_ASSEMBLY_
10 #define _EIC_STL_FACET_ASSEMBLY_
11 
14  public:
21 
22  void AddFacet(EicStlFacet* facet, bool flip) {
23  mFacets.push_back(std::pair<EicStlFacet*, bool>(facet, flip));
24  };
25  const std::vector<std::pair<EicStlFacet*, bool> > &facets( void ) const { return mFacets; };
26 
27  private:
29  std::vector<std::pair<EicStlFacet*, bool> > mFacets;
30 };
31 
32 #endif