Build: #41 was successful Child of CASA-CTT-91
Code commits
OPEN-CASA
-
Ville Suoranta 4beafd65d87c4434d4717377a1e2a204f21f91db
Merge pull request #845 in CASA/casa from CAS-12217 to master
* commit '31ac41b5fd756b0f19f4e41558c7073402851ddd':
Revert "Revert "Merge pull request #829 in CASA/casa from feature/CAS-12180 to master""
Reduced verbosity of tFringeJones_GT
Fix FringeJones test, tFringeJones_GT.cc -
Ville Suoranta d3b023d1e4e7c092a31ee22837ab2a5d08b3026e
Merge pull request #844 in CASA/casa from feature/CAS-12085 to master
* commit '58d9ac9782000624b77f875f7069e79c03475141': (21 commits)
Commit caacore reference update
Fix wrong "whole range"
CAS-12085 Improved PlotRegion for flagging
CAS-12085 do not handle empty camvas
CAS-12085 code clean up
CAS-12085 some improvements
CAS-12085 remove debug message
CAS-12085 Use canvas's defaultBackground instead of fragile guess
CAS-12085 Use canvas's defaultBackground instead of fragile guess
CAS-12085 Added defaultBackground method to PlotCanvas
CAS-12085 Fix the issue in resetting canvas state
CAS-12085 New image for "Flag All" button
CAS-12058 Remove "Unflag All" button from GUI
CAS-12085 Detect canvas whose data are all flagged and change bgcolor
CAS-12085 remove redundant implementations.
CAS-12085 Define FlagActionUtil
CAS-12085 Reset bgcolor and marking status when leaving the mode
CAS-12085 check if the canvas is marked for flagging/unflagging
CAS-12085 add flag to identify which canvas should be processed
CAS-12085 Add some actions to UnflagAll button
... -
Ville Suoranta 31ac41b5fd756b0f19f4e41558c7073402851ddd m
Revert "Revert "Merge pull request #829 in CASA/casa from feature/CAS-12180 to master""
This reverts commit dc2c5fa7d193ef63576fd82b2b0ef9e55f735c1e.
Re-applying CAS-12180- code/synthesis/MeasurementComponents/FringeJones.cc (version 31ac41b5fd756b0f19f4e41558c7073402851ddd) (diffs)
- code/synthesis/MeasurementComponents/FringeJones.h (version 31ac41b5fd756b0f19f4e41558c7073402851ddd) (diffs)
- gcwrap/tasks/fringefit.xml (version 31ac41b5fd756b0f19f4e41558c7073402851ddd) (diffs)
-
Ville Suoranta acbaeca77b31a5a668738e11be734810de3f2726 m
Merge branch 'master' into CAS-12217
-
Takeshi Nakazato 58d9ac9782000624b77f875f7069e79c03475141 m
Commit caacore reference update
-
Takeshi Nakazato c49fd98993b9cd2865d6ce1ab61d50e0d6e3f02c m
Merge branch 'master' into feature/CAS-12085
Conflicts:
code/plotms/Actions/ActionSelect.h
Conflicts have been manually merged. -
Des Small 553f07d02d3f72bec8f17b09061327891b7130d7 m
Reduced verbosity of tFringeJones_GT
-
Des Small 7509a28426f6ed09116540690add1076c4380904 m
Fix FringeJones test, tFringeJones_GT.cc
-
Takeshi Nakazato 338c6b456eef6b5bd2a7c8ab13670b1f0432329c m
Fix wrong "whole range"
CAS-12085
Fixed wrong "whole range" that should be defined as [-(double
max):+(double max)]. Previous implementation was wrong: [+(double
min):+(double max)], which uses numeric_limits<double>::min()/max(). Now
the range is numeric_limits<double>::lowest()/max(), which is
corresponding to [-(double
max):+(double max)]. -
Takeshi Nakazato f3c7c4706eb24daed3a4d4d771e9dd0a02b745f7 m
CAS-12085 Improved PlotRegion for flagging
Improved PlotRegion for flagging so that it always contains whole data
points regardless of they are plotted or not. -
Takeshi Nakazato 7aa192d07864fee74bb2e0f6c2729981da076657 m
CAS-12085 do not handle empty camvas
-
Takeshi Nakazato dea4eb6c0fdd71749d13ad39306dca7d3065c817 m
CAS-12085 code clean up
- code/casaqt/QwtPlotter/QPCanvas.cc (version dea4eb6c0fdd71749d13ad39306dca7d3065c817) (diffs)
- code/graphics/GenericPlotter/PlotTool.cc (version dea4eb6c0fdd71749d13ad39306dca7d3065c817) (diffs)
- code/plotms/Actions/ActionSelect.cc (version dea4eb6c0fdd71749d13ad39306dca7d3065c817) (diffs)
- code/plotms/Actions/ActionSelect.h (version dea4eb6c0fdd71749d13ad39306dca7d3065c817) (diffs)
- code/plotms/Actions/ActionSelectFlag.cc (version dea4eb6c0fdd71749d13ad39306dca7d3065c817) (diffs)
- code/plotms/Actions/ActionSelectUnflag.cc (version dea4eb6c0fdd71749d13ad39306dca7d3065c817) (diffs)
-
Takeshi Nakazato 5a1f1e9ce2af6b453d6e5ca3e73306e9cfb9eac6 m
CAS-12085 some improvements
- clean up debug messages
- use canvas's default background colorization instead of fragile guess -
Takeshi Nakazato 98d018591badac255ce5b26e1c72d43eaabb39c4 m
CAS-12085 remove debug message
-
Takeshi Nakazato d77bdb0fb4de937df1ac6d0d7a19ea7f40628347 m
CAS-12085 Use canvas's defaultBackground instead of fragile guess
Use QPCanvas::defaultBackground() to get default background
colorization. -
Takeshi Nakazato 92f66cb14829900542429db60b1c652575f709d5 m
CAS-12085 Use canvas's defaultBackground instead of fragile guess
Use QPCanvas::defaultBackground() to get default background
colorization. -
Takeshi Nakazato a52e313e292a249f7d8d38075738c0605ad6d0d1 m
CAS-12085 Added defaultBackground method to PlotCanvas
By default it just returns nullptr. QPCanvas overrides it to return
default PlotAreaFillPtr instance corresponding to the background setting
at instance creation.- code/casaqt/QwtPlotter/QPCanvas.cc (version a52e313e292a249f7d8d38075738c0605ad6d0d1) (diffs)
- code/casaqt/QwtPlotter/QPCanvas.qo.h (version a52e313e292a249f7d8d38075738c0605ad6d0d1) (diffs)
- code/graphics/GenericPlotter/PlotCanvas.cc (version a52e313e292a249f7d8d38075738c0605ad6d0d1) (diffs)
- code/graphics/GenericPlotter/PlotCanvas.h (version a52e313e292a249f7d8d38075738c0605ad6d0d1) (diffs)
-
Takeshi Nakazato aea8fb2ddf4cb401bb2021a058366aa2b8e362e4 m
CAS-12085 Fix the issue in resetting canvas state
-
Takeshi Nakazato e6b4eb0803947e39d4159a92a9e63f1ded450837 m
CAS-12085 New image for "Flag All" button
-
Takeshi Nakazato fcba6d47adcf71f955152345fa2a2a4ff188b95b m
CAS-12058 Remove "Unflag All" button from GUI
As "Flag All" mode covers both flag and unflag operation, "Unflag All"
mode is no longer necessary.- code/graphics/GenericPlotter/PlotFactory.cc (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/graphics/GenericPlotter/PlotFactory.h (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/graphics/GenericPlotter/PlotTool.cc (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/graphics/GenericPlotter/PlotTool.h (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/plotms/Actions/ActionFactory.cc (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/plotms/Actions/ActionUnflagAll.cc (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/plotms/Actions/ActionUnflagAll.h (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/plotms/Actions/PlotMSAction.h (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/plotms/CMakeLists.txt (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/plotms/Gui/PlotMSPlotter.cc (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
- code/plotms/Gui/PlotMSPlotter.ui (version fcba6d47adcf71f955152345fa2a2a4ff188b95b) (diffs)
-
Takeshi Nakazato f0e594d6b3dd6c88e23437fc522c77fa91196e0e m
CAS-12085 Detect canvas whose data are all flagged and change bgcolor
When per-panel flag mode is enabled, bgcolor of canvas without valid
data should be changed to yellow. This commit is to implement this
behavior.- code/graphics/GenericPlotter/PlotCanvas.cc (version f0e594d6b3dd6c88e23437fc522c77fa91196e0e) (diffs)
- code/graphics/GenericPlotter/PlotCanvas.h (version f0e594d6b3dd6c88e23437fc522c77fa91196e0e) (diffs)
- code/graphics/GenericPlotter/PlotTool.cc (version f0e594d6b3dd6c88e23437fc522c77fa91196e0e) (diffs)
- code/graphics/GenericPlotter/PlotTool.h (version f0e594d6b3dd6c88e23437fc522c77fa91196e0e) (diffs)
- code/plotms/Actions/ActionFlagAll.cc (version f0e594d6b3dd6c88e23437fc522c77fa91196e0e) (diffs)
-
Takeshi Nakazato 29311cbcb6379fdeb53f58bcd97d4348c9d87b59 m
CAS-12085 remove redundant implementations.
-
Takeshi Nakazato cc813db011541de76d2a05eaed2a929a77fb07f8 m
CAS-12085 Define FlagActionUtil
FlagActionUtil is defined to share some functionality related to
flagging operation. functions defined in this class is shared between
ActionSelectFlag/ActionSelectUnflag/ActionFlagAll.- code/plotms/Actions/ActionFlagAll.cc (version cc813db011541de76d2a05eaed2a929a77fb07f8) (diffs)
- code/plotms/Actions/ActionFlagAll.h (version cc813db011541de76d2a05eaed2a929a77fb07f8) (diffs)
- code/plotms/Actions/ActionSelect.cc (version cc813db011541de76d2a05eaed2a929a77fb07f8) (diffs)
- code/plotms/Actions/ActionSelect.h (version cc813db011541de76d2a05eaed2a929a77fb07f8) (diffs)
- code/plotms/Actions/ActionSelectFlag.cc (version cc813db011541de76d2a05eaed2a929a77fb07f8) (diffs)
- code/plotms/Actions/ActionSelectUnflag.cc (version cc813db011541de76d2a05eaed2a929a77fb07f8) (diffs)
- code/plotms/Actions/FlagActionUtil.cc (version cc813db011541de76d2a05eaed2a929a77fb07f8) (diffs)
- code/plotms/Actions/FlagActionUtil.h (version cc813db011541de76d2a05eaed2a929a77fb07f8) (diffs)
- code/plotms/CMakeLists.txt (version cc813db011541de76d2a05eaed2a929a77fb07f8) (diffs)
-
Takeshi Nakazato 5fbf9495dc23387ded4316abeb2349188e61d461 m
CAS-12085 Reset bgcolor and marking status when leaving the mode
When per-panel flag mode is disabled, all the mark status are reset and
bgcolor was set to default one.- code/graphics/GenericPlotter/PlotCanvas.cc (version 5fbf9495dc23387ded4316abeb2349188e61d461) (diffs)
- code/graphics/GenericPlotter/PlotCanvas.h (version 5fbf9495dc23387ded4316abeb2349188e61d461) (diffs)
- code/graphics/GenericPlotter/PlotTool.cc (version 5fbf9495dc23387ded4316abeb2349188e61d461) (diffs)
- code/graphics/GenericPlotter/PlotTool.h (version 5fbf9495dc23387ded4316abeb2349188e61d461) (diffs)
- code/plotms/Actions/ActionFlagAll.cc (version 5fbf9495dc23387ded4316abeb2349188e61d461) (diffs)
-
Takeshi Nakazato 117891a7fea5b4b4e1ab307e098c99ec8de1a1c9 m
CAS-12085 check if the canvas is marked for flagging/unflagging
When leaving the per-panel flagging mode, the action class checks if the
canvas should be flagged/unflagged. Actual flag operation is not
implemented yet. -
Takeshi Nakazato cc1b51fcc38ac8b182d99d3f7ae4046d5ec21099 m
CAS-12085 add flag to identify which canvas should be processed
Added a flag to identify which canvas should be flagged/unflagged.
Panels marked as "flag" is colored by yellow.- code/graphics/GenericPlotter/PlotCanvas.cc (version cc1b51fcc38ac8b182d99d3f7ae4046d5ec21099) (diffs)
- code/graphics/GenericPlotter/PlotCanvas.h (version cc1b51fcc38ac8b182d99d3f7ae4046d5ec21099) (diffs)
- code/graphics/GenericPlotter/PlotTool.cc (version cc1b51fcc38ac8b182d99d3f7ae4046d5ec21099) (diffs)
- code/graphics/GenericPlotter/PlotTool.h (version cc1b51fcc38ac8b182d99d3f7ae4046d5ec21099) (diffs)
-
Takeshi Nakazato 22a81048ead440ffcc46180af86e44a25a2dc524 m
CAS-12085 Add some actions to UnflagAll button
Action for testing purpose has been added to UnflagAll button which is
an equivalent action to FlagAll button.- code/graphics/GenericPlotter/PlotFactory.cc (version 22a81048ead440ffcc46180af86e44a25a2dc524) (diffs)
- code/graphics/GenericPlotter/PlotFactory.h (version 22a81048ead440ffcc46180af86e44a25a2dc524) (diffs)
- code/graphics/GenericPlotter/PlotTool.cc (version 22a81048ead440ffcc46180af86e44a25a2dc524) (diffs)
- code/graphics/GenericPlotter/PlotTool.h (version 22a81048ead440ffcc46180af86e44a25a2dc524) (diffs)
-
Takeshi Nakazato 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066 m
CAS-12085 Add FlagAll/UnflagAll buttons
Added FlagAll/UnflagAll buttons to GUI panel.
TODO: replace icons with new ones
A few actions on pressing buttons have been implemneted.
TODO: implement real actions- code/graphics/GenericPlotter/PlotFactory.cc (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/graphics/GenericPlotter/PlotFactory.h (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/graphics/GenericPlotter/PlotTool.cc (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/graphics/GenericPlotter/PlotTool.h (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/plotms/Actions/ActionFactory.cc (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/plotms/Actions/ActionFlagAll.cc (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/plotms/Actions/ActionFlagAll.h (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/plotms/Actions/ActionUnflagAll.cc (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/plotms/Actions/ActionUnflagAll.h (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/plotms/Actions/PlotMSAction.h (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/plotms/CMakeLists.txt (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/plotms/Gui/PlotMSPlotter.cc (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)
- code/plotms/Gui/PlotMSPlotter.ui (version 4fb06a9afc7fe0e9e4d1385ce598ce2eed971066) (diffs)