SOLIDstate
A C++ library for solid state physics
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
Sector.hpp
Go to the documentation of this file.
1 
11 #ifndef ENSEMBLE_SECTOR_HPP
12 #define ENSEMBLE_SECTOR_HPP
13 
14 #include "../Combinadics/Binomials.hpp"
15 
16 namespace solid
17 {
18 
22 class Sector
23 {
24 public:
28  int L;
29 
33  int N;
34 
38  int size;
39 
46  Sector(int _L, int _N);
47 };
48 
49 } // namespace solid
50 
51 #endif
contains information about number of sites and particles in the sector
Definition: Sector.hpp:22
Sector(int _L, int _N)
Construct a new Sector object.
Definition: Sector.cpp:8
int size
number of states in the sector (dimension of the subspace)
Definition: Sector.hpp:38
int L
number of sites
Definition: Sector.hpp:28
int N
number of particles
Definition: Sector.hpp:33