Skip to content

Commit 0e96dfe

Browse files
committed
[misc] Improve documentation of RunType enums
1 parent c5ab630 commit 0e96dfe

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

apricot/protos/apricot.proto

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ service Apricot {
5959
}
6060

6161
// NOTE: make sure the enum values include and match those in RunType in dcs.pb.go and runtype.go
62-
// NOTE: this run type list is replicated in AliceO2 repo in GRPECSObject.h. Inform Ruben when the list is updated.
62+
// NOTE: this run type list is replicated in AliceO2 repo in
63+
// https://github.com/AliceO2Group/AliceO2/blob/dev/DataFormats/Parameters/include/DataFormatsParameters/ECSDataAdapters.h
64+
// Inform Ruben when the list is updated.
65+
6366
enum RunType {
6467
NULL = 0;
6568
PHYSICS = 1;

common/runtype/runtype.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
package runtype
2828

2929
// NOTE: make sure the enum values include and match those in RunType in dcs.pb.go and apricot.proto
30-
// NOTE: this run type list is replicated in AliceO2 repo in GRPECSObject.h. Inform Ruben when the list is updated.
30+
// NOTE: this run type list is replicated in AliceO2 repo in
31+
// https://github.com/AliceO2Group/AliceO2/blob/dev/DataFormats/Parameters/include/DataFormatsParameters/ECSDataAdapters.h
32+
// Inform Ruben when the list is updated.
3133
type RunType int
3234

3335
const (

0 commit comments

Comments
 (0)