Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
L
lalsuite
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
45
Issues
45
List
Boards
Labels
Service Desk
Milestones
Merge Requests
20
Merge Requests
20
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
Container Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lscsoft
lalsuite
Commits
e87c11c2
Commit
e87c11c2
authored
Aug 05, 2019
by
Adam Mercer
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'lalpulsar-point-release' into 'o3-release'
LALPulsar point release See merge request
lscsoft/lalsuite!914
parents
c3a1ac27
23097ca4
Pipeline
#73577
passed with stages
in 112 minutes and 46 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
20 deletions
+7
-20
configure.ac
configure.ac
+1
-1
lalapps/src/inspiral/lalapps_write_ihope_page.py
lalapps/src/inspiral/lalapps_write_ihope_page.py
+0
-1
lalinference/src/LALInferencePrior.c
lalinference/src/LALInferencePrior.c
+0
-14
lalpulsar/configure.ac
lalpulsar/configure.ac
+2
-2
lalpulsar/src/CWMakeFakeData.c
lalpulsar/src/CWMakeFakeData.c
+4
-2
No files found.
configure.ac
View file @
e87c11c2
AC_PREREQ([2.63])
AC_INIT([LALSuite],[6.6
1
],[lal-discuss@ligo.org])
AC_INIT([LALSuite],[6.6
2
],[lal-discuss@ligo.org])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
...
...
lalapps/src/inspiral/lalapps_write_ihope_page.py
View file @
e87c11c2
...
...
@@ -1943,7 +1943,6 @@ def create_venn(data, tag):
>>> create_venn(data, tag)
@param data: an input dictionary
@param data: numbers
@param tag: (type: string)
@return: a boolean. True is succesfule, False otherwise.
"""
...
...
lalinference/src/LALInferencePrior.c
View file @
e87c11c2
...
...
@@ -1161,20 +1161,6 @@ void LALInferenceCyclicReflectiveBound(LALInferenceVariables *parameter,
}
/**
* \brief Rotate initial phase if polarisation angle is cyclic around ranges
* If the polarisation angle parameter \f$\psi\f$ is cyclic about its upper and
* lower ranges of \f$-\pi/4\f$ to \f$\pi/4\f$ then the transformation for
* crossing a boundary requires the initial phase parameter \f$\phi_0\f$ to be
* rotated through \f$\pi\f$ radians. The function assumes the value of
* \f$\psi\f$ has been rescaled to be between 0 and \f$2\pi\f$ - this is a
* requirement of the covariance matrix routine \c LALInferenceNScalcCVM
* function.
*
* This is particularly relevant for pulsar analyses.
*
* \param parameter [in] Pointer to an array of parameters
*/
void
LALInferenceRotateInitialPhase
(
LALInferenceVariables
*
parameter
){
if
(
parameter
==
NULL
)
...
...
lalpulsar/configure.ac
View file @
e87c11c2
AC_PREREQ([2.63])
AC_INIT([LALPulsar],[1.18.
0
],[lal-discuss@ligo.org])
AC_INIT([LALPulsar],[1.18.
1
],[lal-discuss@ligo.org])
AC_CONFIG_HEADERS([src/config.h src/LALPulsarConfig.h])
AC_CONFIG_SRCDIR([src/ComputeFstat.c])
AC_CONFIG_AUX_DIR([gnuscripts])
...
...
@@ -62,7 +62,7 @@ LALSUITE_DISTCHECK_CONFIGURE_FLAGS
# 6. if any interfaces have been removed since the last public release,
# then set age to 0.
AC_SUBST([LIBCURRENT],[19])
AC_SUBST([LIBREVISION],[
0
])
AC_SUBST([LIBREVISION],[
1
])
AC_SUBST([LIBAGE],[0])
AC_SUBST([LIBVERSION],[${LIBCURRENT}:${LIBREVISION}:${LIBAGE}])
...
...
lalpulsar/src/CWMakeFakeData.c
View file @
e87c11c2
...
...
@@ -844,9 +844,11 @@ XLALReadPulsarParams ( PulsarParams *pulsarParams, ///< [out] pulsar parameters
{
XLAL_CHECK
(
h0
>=
0
,
XLAL_EDOM
);
XLAL_CHECK
(
(
cosi
>=
-
1
)
&&
(
cosi
<=
1
),
XLAL_EDOM
);
pulsarParams
->
Amp
.
aPlus
=
0
.
5
*
h0
*
(
1
.
0
+
SQ
(
cosi
));
pulsarParams
->
Amp
.
aCross
=
h0
*
cosi
;
aPlus
=
0
.
5
*
h0
*
(
1
.
0
+
SQ
(
cosi
));
aCross
=
h0
*
cosi
;
}
//if {h0, cosi}
pulsarParams
->
Amp
.
aPlus
=
aPlus
;
pulsarParams
->
Amp
.
aCross
=
aCross
;
// ----- psi
REAL8
psi
=
0
;
BOOLEAN
have_psi
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment