Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
bfb33bc3
Commit
bfb33bc3
authored
14 years ago
by
Alex Buts
Browse files
Options
Downloads
Patches
Plain Diff
refs #1239 low case logarithm has been deleted
parent
ce84202d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Mantid/Algorithms/inc/MantidAlgorithms/logarithm.h
+0
-75
0 additions, 75 deletions
Code/Mantid/Algorithms/inc/MantidAlgorithms/logarithm.h
with
0 additions
and
75 deletions
Code/Mantid/Algorithms/inc/MantidAlgorithms/logarithm.h
deleted
100644 → 0
+
0
−
75
View file @
ce84202d
#ifndef MANTID_ALGORITHM_LOG_H_
#define MANTID_ALGORITHM_LOG_H_
#include
"c:\mantid\code\mantid\algorithms\inc\mantidalgorithms\unaryoperation.h"
namespace
Mantid
{
namespace
Algorithms
{
/** Takes a workspace as input and calculates the natural logarithm of number of counts for each 1D spectrum.
The algorithm creates a new workspace containing logarithms of signals (numbers of counts) in
Required Properties:
<UL>
<LI> InputWorkspace - The name of the workspace to take as input </LI>
<LI> OutputWorkspace - The name of the workspace in which to store the result </LI>
</UL>
Optional Properties (assume that you count from zero):
<UL>
<LI> filler -- A workspace can normally have zeros in it and the logarithm goes to minys infinity for zeros.
This field keeps value, that should be placed in the workspace instead of minus infinity </LI>
<LI> natural -- Natural or base 10 logarithm. Default is natural </LI>
</UL>
@author AB, ISIS, Rutherford Appleton Laboratory
@date 12/05/2010
Copyright © 2007-2010 STFC Rutherford Appleton Laboratory
This file is part of Mantid.
Mantid 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 3 of the License, or
(at your option) any later version.
Mantid 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/>.
File change history is stored at: <https://svn.mantidproject.org/mantid/trunk/Code/Mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class
DLLExport
logarithm
:
public
UnaryOperation
{
public:
logarithm
(
void
)
:
UnaryOperation
(),
log_Min
(
0
),
is_natural
(
true
){};
virtual
~
logarithm
(
void
){};
/// Algorithm's name for identification
virtual
const
std
::
string
name
()
const
{
return
"log"
;}
/// Algorithm's version for identification
virtual
const
int
version
()
const
{
return
(
1
);}
/// Algorithm's category for identification
virtual
const
std
::
string
category
()
const
{
return
"Arithmetic"
;}
private
:
// Overridden Algorithm methods
void
init
();
//void exec();
/// The value to replace ln(0)
double
log_Min
;
/// If the logarithm natural or 10-based
bool
is_natural
;
///
/// get properties from GUI
virtual
void
retrieveProperties
();
/// Actually the function, which is run on values when the operation is performed
virtual
void
performUnaryOperation
(
const
double
&
XIn
,
const
double
&
YIn
,
const
double
&
EIn
,
double
&
YOut
,
double
&
EOut
);
};
}
// End namespace Algorithms
}
// End namespace Mantid
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment