-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arthur Glowacki
committed
Jul 29, 2024
1 parent
97ae8ca
commit 5b7a5bf
Showing
2 changed files
with
46 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/*----------------------------------------------------------------------------- | ||
* Copyright (c) 2024, UChicago Argonne, LLC | ||
* See LICENSE file. | ||
*---------------------------------------------------------------------------*/ | ||
|
||
#include <mvc/BlueskyComm.h> | ||
|
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,39 @@ | ||
/*----------------------------------------------------------------------------- | ||
* Copyright (c) 2024, UChicago Argonne, LLC | ||
* See LICENSE file. | ||
*---------------------------------------------------------------------------*/ | ||
|
||
#ifndef BLUESKY_PLAN_H | ||
#define BLUESKY_PLAN_H | ||
|
||
//--------------------------------------------------------------------------- | ||
|
||
#include <unordered_map> | ||
|
||
//--------------------------------------------------------------------------- | ||
struct BlueSkyParam | ||
{ | ||
BlueSkyParam() | ||
{ | ||
default_val = "0.0"; | ||
} | ||
QString name; | ||
QString description; | ||
QString default_val; | ||
}; | ||
|
||
struct BlueskyPlan | ||
{ | ||
BlueskyPlan(){} | ||
QString name; | ||
QString description; | ||
QString module; | ||
std::unordered_map<QString, BlueSkyParam> parameters; | ||
}; | ||
|
||
|
||
//--------------------------------------------------------------------------- | ||
|
||
#endif /* */ | ||
|
||
//--------------------------------------------------------------------------- |