File: sym_tensor_tt.C

package info (click to toggle)
lorene 0.0.0~cvs20161116%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,472 kB
  • sloc: cpp: 212,946; fortran: 21,645; makefile: 1,750; sh: 4
file content (192 lines) | stat: -rw-r--r-- 4,513 bytes parent folder | download | duplicates (2)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
 *  Methods of class Sym_tensor_tt
 *
 *   (see file sym_tensor.h for documentation)
 *
 */

/*
 *   Copyright (c) 2003-2004 Eric Gourgoulhon & Jerome Novak
 *
 *   This file is part of LORENE.
 *
 *   LORENE is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   LORENE is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with LORENE; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */


char sym_tensor_tt_C[] = "$Header: /cvsroot/Lorene/C++/Source/Tensor/sym_tensor_tt.C,v 1.7 2014/10/13 08:53:43 j_novak Exp $" ;

/*
 * $Id: sym_tensor_tt.C,v 1.7 2014/10/13 08:53:43 j_novak Exp $
 * $Log: sym_tensor_tt.C,v $
 * Revision 1.7  2014/10/13 08:53:43  j_novak
 * Lorene classes and functions now belong to the namespace Lorene.
 *
 * Revision 1.6  2014/10/06 15:13:19  j_novak
 * Modified #include directives to use c++ syntax.
 *
 * Revision 1.5  2005/04/01 14:28:32  j_novak
 * Members p_eta and p_mu are now defined in class Sym_tensor.
 *
 * Revision 1.4  2004/03/30 14:01:19  j_novak
 * Copy constructors and operator= now copy the "derived" members.
 *
 * Revision 1.3  2004/03/03 13:16:21  j_novak
 * New potential khi (p_khi) and the functions manipulating it.
 *
 * Revision 1.2  2004/01/04 20:52:45  e_gourgoulhon
 * Added assignement (operator=) to a Tensor_sym.
 *
 * Revision 1.1  2003/10/27 10:50:54  e_gourgoulhon
 * First version.
 *
 *
 *
 * $Header: /cvsroot/Lorene/C++/Source/Tensor/sym_tensor_tt.C,v 1.7 2014/10/13 08:53:43 j_novak Exp $
 *
 */

// Headers C
#include <cstdlib>

// Headers Lorene
#include "tensor.h"

			//--------------//
			// Constructors //
			//--------------//

// Standard constructor 
// --------------------
namespace Lorene {
Sym_tensor_tt::Sym_tensor_tt(const Map& map, const Base_vect& triad_i,
		const Metric& met) 
	: Sym_tensor_trans(map, triad_i, met ) {
				
	set_der_0x0() ;

}

// Copy constructor
// ----------------
Sym_tensor_tt::Sym_tensor_tt (const Sym_tensor_tt& source)
	: Sym_tensor_trans(source) {
    
	set_der_0x0() ;

	if (source.p_khi != 0x0) p_khi = new Scalar( *(source.p_khi) ) ; 
	
}   


// Constructor from a file
// -----------------------
Sym_tensor_tt::Sym_tensor_tt(const Map& mapping, const Base_vect& triad_i, 
	const Metric& met, FILE* fd) 
	: Sym_tensor_trans(mapping, triad_i, met, fd) {

	set_der_0x0() ;
}

			//--------------//
			//  Destructor  //
			//--------------//

Sym_tensor_tt::~Sym_tensor_tt() {

  Sym_tensor_tt::del_deriv() ;	// in order not to follow the virtual aspect
  									// of del_deriv()

}



			//-------------------//
			// Memory managment  //
			//-------------------//

void Sym_tensor_tt::del_deriv() const {

	if (p_khi != 0x0) delete p_khi ; 
	
	set_der_0x0() ;
	
	Sym_tensor_trans::del_deriv() ;

}

void Sym_tensor_tt::set_der_0x0() const {

  p_khi = 0x0 ;
}


			//--------------//
			//  Assignment  //
			//--------------//

void Sym_tensor_tt::operator=(const Sym_tensor_tt& source) {
    
    // Assignment of quantities common to all derived classes of Sym_tensor_trans
	Sym_tensor_trans::operator=(source) ; 
	
	del_deriv() ; 
	
	if (source.p_khi != 0x0) p_khi = new Scalar( *(source.p_khi) ) ; 
	
}


void Sym_tensor_tt::operator=(const Sym_tensor_trans& source) {
    
    // Assignment of quantities common to all derived classes of Sym_tensor_trans
	Sym_tensor_trans::operator=(source) ; 

	del_deriv() ; 	
}



void Sym_tensor_tt::operator=(const Sym_tensor& source) {
    
    // Assignment of quantities common to all derived classes of Sym_tensor_trans
	Sym_tensor_trans::operator=(source) ; 

	del_deriv() ; 	
}


void Sym_tensor_tt::operator=(const Tensor_sym& source) {
    
    // Assignment of quantities common to all derived classes of Sym_tensor_trans
    Sym_tensor_trans::operator=(source) ; 
	
    del_deriv() ; 	
}


void Sym_tensor_tt::operator=(const Tensor& source) {
    
    // Assignment of quantities common to all derived classes of Sym_tensor_trans
	Sym_tensor_trans::operator=(source) ; 
	
	del_deriv() ; 	
}




}