-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Add missing method
Ostap::Math::Histo3D::integrateXZ ( y , ... )
- Loading branch information
1 parent
b928364
commit 7888776
Showing
5 changed files
with
98 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# v1.9.8.8 | ||
|
||
## New features: | ||
|
||
## Backward incompatible: | ||
|
||
## Bug fixes: | ||
|
||
1. Add missing method `Ostap::Math::Histo3D::integrateXZ ( y , ... )` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# ============================================================================= | ||
# @file ostap/core/tests/test_core_ostap.py | ||
# Copyright (c) Ostap developpers. | ||
# ============================================================================= | ||
""" Test module | ||
""" | ||
# ============================================================================= | ||
import ostap | ||
# ============================================================================= | ||
# logging | ||
# ============================================================================= | ||
from ostap.logger.logger import getLogger | ||
if '__main__' == __name__ : logger = getLogger ( 'test_core_ostap' ) | ||
else : logger = getLogger ( __name__ ) | ||
# ============================================================================= | ||
|
||
# ============================================================================= | ||
if '__main__' == __name__ : | ||
|
||
pass | ||
|
||
# ============================================================================= | ||
## The END | ||
# ============================================================================= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters