source: ThirdParty/mpqc_open/src/lib/math/symmetry/irrep.cc@ b7e5b0

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since b7e5b0 was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 3.8 KB
Line 
1//
2// irrep.cc
3//
4// Modifications are
5// Copyright (C) 1996 Limit Point Systems, Inc.
6//
7// Author: Edward Seidl <seidl@janed.com>
8// Maintainer: LPS
9//
10// This file is part of the SC Toolkit.
11//
12// The SC Toolkit is free software; you can redistribute it and/or modify
13// it under the terms of the GNU Library General Public License as published by
14// the Free Software Foundation; either version 2, or (at your option)
15// any later version.
16//
17// The SC Toolkit is distributed in the hope that it will be useful,
18// but WITHOUT ANY WARRANTY; without even the implied warranty of
19// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20// GNU Library General Public License for more details.
21//
22// You should have received a copy of the GNU Library General Public License
23// along with the SC Toolkit; see the file COPYING.LIB. If not, write to
24// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25//
26// The U.S. Government is granted a limited license as per AL 91-7.
27//
28
29/* irrep.cc -- implementation of the point group classes
30 *
31 * THIS SOFTWARE FITS THE DESCRIPTION IN THE U.S. COPYRIGHT ACT OF A
32 * "UNITED STATES GOVERNMENT WORK". IT WAS WRITTEN AS A PART OF THE
33 * AUTHOR'S OFFICIAL DUTIES AS A GOVERNMENT EMPLOYEE. THIS MEANS IT
34 * CANNOT BE COPYRIGHTED. THIS SOFTWARE IS FREELY AVAILABLE TO THE
35 * PUBLIC FOR USE WITHOUT A COPYRIGHT NOTICE, AND THERE ARE NO
36 * RESTRICTIONS ON ITS USE, NOW OR SUBSEQUENTLY.
37 *
38 * Author:
39 * E. T. Seidl
40 * Bldg. 12A, Rm. 2033
41 * Computer Systems Laboratory
42 * Division of Computer Research and Technology
43 * National Institutes of Health
44 * Bethesda, Maryland 20892
45 * Internet: seidl@alw.nih.gov
46 * June, 1993
47 */
48
49
50#include <stdlib.h>
51
52#include <util/misc/newstring.h>
53#include <math/symmetry/pointgrp.h>
54#include <util/misc/formio.h>
55
56using namespace std;
57using namespace sc;
58
59/////////////////////////////////////////////////////////////////////////
60
61IrreducibleRepresentation::IrreducibleRepresentation() :
62 g(0), degen(0), nrot_(0), ntrans_(0), complex_(0), symb(0), rep(0), csymb(0)
63{
64}
65
66IrreducibleRepresentation::IrreducibleRepresentation(
67 int order, int d, const char *lab, const char *clab) :
68 g(0), degen(0), nrot_(0), ntrans_(0), complex_(0), symb(0), rep(0), csymb(0)
69{
70 init(order,d,lab,clab);
71}
72
73
74IrreducibleRepresentation::IrreducibleRepresentation(
75 const IrreducibleRepresentation& ir) :
76 g(0), degen(0), nrot_(0), ntrans_(0), complex_(0), symb(0), rep(0), csymb(0)
77{
78 *this = ir;
79}
80
81IrreducibleRepresentation::~IrreducibleRepresentation()
82{
83 init();
84}
85
86IrreducibleRepresentation&
87IrreducibleRepresentation::operator=(const IrreducibleRepresentation& ir)
88{
89 init(ir.g,ir.degen,ir.symb,ir.csymb);
90
91 nrot_ = ir.nrot_;
92 ntrans_ = ir.ntrans_;
93 complex_ = ir.complex_;
94
95 for (int i=0; i < g; i++)
96 rep[i]=ir.rep[i];
97
98 return *this;
99}
100
101void
102IrreducibleRepresentation::init(int order, int d, const char *lab,
103 const char *clab)
104{
105 g=order;
106 degen=d;
107 ntrans_=nrot_=complex_=0;
108
109 delete[] symb;
110 symb = new_string(lab);
111
112 delete[] csymb;
113 if (clab) csymb = new_string(clab);
114 else csymb = 0;
115
116 if (rep) {
117 delete[] rep;
118 rep=0;
119 }
120
121 if (g) {
122 rep = new SymRep[g];
123 for (int i=0; i < g; i++)
124 rep[i].set_dim(d);
125 }
126}
127
128void
129IrreducibleRepresentation::print(ostream& os) const
130{
131 if (!g)
132 return;
133
134 int i,d;
135
136 os << indent << scprintf("%-5s",symb);
137
138 for (i=0; i < g; i++)
139 os << scprintf(" %6.3f",character(i));
140 os << " | " << ntrans_ << " t, " << nrot_ << " R\n";
141
142 for (d=0; d < nproj(); d++) {
143 os << indent << " ";
144 for (i=0; i < g; i++)
145 os << scprintf(" %6.3f",p(d,i));
146 os << endl;
147 }
148}
149
150/////////////////////////////////////////////////////////////////////////////
151
152// Local Variables:
153// mode: c++
154// c-file-style: "ETS"
155// End:
Note: See TracBrowser for help on using the repository browser.