Page Menu
Home
HEPForge
Search
Configure Global Search
Log In
Files
F8310037
WaveOverlap.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
WaveOverlap.h
View Options
//==============================================================================
// WaveOverlap.h
//
// Copyright (C) 2010-2013 Tobias Toll and Thomas Ullrich
//
// This file is part of Sartre version: 1.1
//
// This program 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.
// This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
//
// Author: Tobias Toll
// Last update:
// $Date: 2013-09-10 19:11:59 +0100 (Tue, 10 Sep 2013) $
// $Author: tobilibob@gmail.com $
//==============================================================================
#ifndef WaveOverlap_h
#define WaveOverlap_h
class
WaveOverlap
{
public
:
WaveOverlap
();
virtual
~
WaveOverlap
();
virtual
void
setWaveOverlapFunctionParameters
(
int
);
virtual
double
T
(
double
,
double
,
double
)
=
0
;
virtual
double
L
(
double
,
double
,
double
)
=
0
;
virtual
void
setProcess
(
int
){};
};
class
WaveOverlapVM
:
public
WaveOverlap
{
public
:
WaveOverlapVM
();
void
setWaveOverlapFunctionParameters
(
int
);
void
setProcess
(
int
);
private
:
double
T
(
double
,
double
,
double
);
double
L
(
double
,
double
,
double
);
double
transverseWaveFunction
(
double
,
double
);
double
longitudinalWaveFunction
(
double
,
double
);
double
dDrTransverseWaveFunction
(
double
,
double
);
double
laplaceRLongitudinalWaveFunction
(
double
,
double
);
private
:
double
mNT
,
mRT2
;
double
mMf
;
// mass of quarks in vector meson
double
mMf2
;
double
mEf
;
double
mMV
;
double
mNL
,
mRL2
;
};
class
WaveOverlapDVCS
:
public
WaveOverlap
{
private
:
double
T
(
double
,
double
,
double
);
double
L
(
double
,
double
,
double
);
};
inline
void
WaveOverlap
::
setWaveOverlapFunctionParameters
(
int
)
{
/* no op*/
}
#endif
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sat, Dec 21, 5:12 PM (15 h, 17 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3980067
Default Alt Text
WaveOverlap.h (2 KB)
Attached To
rSARTRESVN sartresvn
Event Timeline
Log In to Comment