-
Notifications
You must be signed in to change notification settings - Fork 33
/
IrrepSpace.h
44 lines (39 loc) · 1.48 KB
/
IrrepSpace.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
Developed by Sandeep Sharma and Garnet K.-L. Chan, 2012
Copyright (c) 2012, Garnet K.-L. Chan
This program is integrated in Molpro with the permission of
Sandeep Sharma and Garnet K.-L. Chan
*/
#ifndef IRREP_SPACE_HEADER
#define IRREP_SPACE_HEADER
#include "Symmetry.h"
//In nonabelian symmetries each irrep could have many basis vectors, this class
// represents the irrep. Each basis vector in a irrep is represented by a
// different class IrrepVector
namespace SpinAdapted{
class IrrepSpace
{
private:
friend class boost::serialization::access;
template<class Archive> void serialize(Archive & ar, const unsigned int version)
{
ar & irrep;
}
int irrep;
public:
IrrepSpace() : irrep(0) {}
explicit IrrepSpace(int ir) : irrep(ir) {}
std::vector<IrrepSpace> operator+=(IrrepSpace rhs);
bool operator==(IrrepSpace rhs) const;
bool operator!=(IrrepSpace rhs) const;
bool operator<(IrrepSpace rhs) const;
friend std::vector<IrrepSpace> operator+(IrrepSpace lhs, IrrepSpace rhs);
friend std::vector<IrrepSpace> operator-(IrrepSpace lhs, IrrepSpace rhs);
friend IrrepSpace operator-(IrrepSpace lhs);
void Save(std::ofstream &ofs);
void Load(std::ifstream &ifs);
friend ostream& operator<<(ostream& os, const IrrepSpace s);
int getirrep() const ;
};
}
#endif