-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFirst.m
37 lines (27 loc) · 1.02 KB
/
First.m
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
(* ************************************************************** *)
(*
This file is read before anything else. Put here definitions
to be read before the subpackages.
E.g.:
When using ArgumentsSupply on objects that are defined in a model
file but are in context Phi`Objects`, it is
necessary to define these objects before Objects.m is read.
*)
(* ************************************************************** *)
(* Definitions used by the model PiN2 *)
Phi`Objects`CovariantNucleonFieldDerivative::usage =
"CovariantNucleonFieldDerivative is the nucleon covariant derivative of J. Gasser, \
M. E. Sainio and A. Svarc (1988), Nucl. Phys, B307, 779-853";
Phi`Objects`CNDr::usage =
"CNDr is the shorthand notation for CovariantNucleonFieldDerivative, which is the nucleon \
covariant derivative of J. Gasser, M. E. Sainio and A. Svarc (1988), Nucl. Phys, B307, 779-853";
Begin["`Package`"]
End[]
Begin["`PHI`Private`"];
Options[CovariantFieldDerivative] = {
Explicit->True,
DiagonalToU->True,
SUNN->2,
UDimension->Automatic
};
End[]