From 51fc423bb78cadb5e8ab141db4b0b5486c90e493 Mon Sep 17 00:00:00 2001 From: JianLIUhep Date: Wed, 16 Jun 2021 17:12:12 +0200 Subject: [PATCH] add the json file for the two tasks on EPN --- Modules/ITS/itsEPN.json | 127 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 Modules/ITS/itsEPN.json diff --git a/Modules/ITS/itsEPN.json b/Modules/ITS/itsEPN.json new file mode 100644 index 0000000000..9f71bf2e2c --- /dev/null +++ b/Modules/ITS/itsEPN.json @@ -0,0 +1,127 @@ +{ + "qc": { + "config": { + "database": { + "implementation": "CCDB", + "host": "ccdb-test.cern.ch:8080", + "username": "not_applicable", + "password": "not_applicable", + "name": "not_applicable" + }, + "Activity": { + "number": "42", + "type": "2" + }, + "monitoring": { + "url": "infologger:///debug?qc" + }, + "consul": { + "url": "http://consul-test.cern.ch:8500" + }, + "conditionDB": { + "url": "ccdb-test.cern.ch:8080" + } + }, + "tasks": { + "ITSClusterTask": { + "active": "true", + "className": "o2::quality_control_modules::its::ITSClusterTask", + "moduleName": "QcITS", + "detectorName": "ITS", + "cycleDurationSeconds": "180", + "maxNumberCycles": "-1", + "dataSource_comment": "The other type of dataSource is \"direct\", see basic-no-sampling.json.", + "dataSource": { + "type": "dataSamplingPolicy", + "name": "compclus" + }, + "location": "remote", + "taskParameters": { + "layer": "1111111", + "clusterDictionaryPath": "/home/epn/odc/files/ITSdictionary.bin", + "runNumberPath": "/home/its/QC/workdir/infiles/RunNumber.dat", + "geomPath": "/home/epn/odc/files/o2sim_geometry.root", + "nThreads": "4" + } + }, + "ITSTrackTask": { + "active": "true", + "className": "o2::quality_control_modules::its::ITSTrackTask", + "moduleName": "QcITS", + "detectorName": "ITS", + "cycleDurationSeconds": "30", + "maxNumberCycles": "-1", + "dataSource_comment": "The other type of dataSource is \"direct\", see basic-no-sampling.json.", + "dataSource": { + "type": "dataSamplingPolicy", + "name": "tracks" + }, + "location": "remote" + } + }, + "checks": { + "ITSClusterCheck": { + "active": "true", + "className": "o2::quality_control_modules::its::ITSClusterCheck", + "moduleName": "QcITS", + "policy": "OnAny", + "detectorName": "ITS", + "dataSource": [ + { + "type": "Task", + "name": "ITSClusterTask", + "MOs": [ + "Layer0/AverageClusterSize" + ] + } + ] + }, + "ITSTrackCheck": { + "active": "true", + "className": "o2::quality_control_modules::its::ITSTrackCheck", + "moduleName": "QcITS", + "policy": "OnAny", + "detectorName": "ITS", + "dataSource": [ + { + "type": "Task", + "name": "ITSTrackTask", + "MOs": [ + "NClusters" + ] + } + ] + } + } + }, + "dataSamplingPolicies": [ + { + "id": "compclus", + "active": "true", + "machines": [], + "query": "compclus:ITS/COMPCLUSTERS/0;clustersrof:ITS/CLUSTERSROF/0", + "samplingConditions": [ + { + "condition": "random", + "fraction": "0.01", + "seed": "1441" + } + ], + "blocking": "false" + }, + { + "id": "tracks", + "active": "true", + "machines": [], + "query": "tracks:ITS/TRACKS/0;rofs:ITS/ITSTrackROF/0;compclus:ITS/COMPCLUSTERS/0", + "samplingConditions": [ + { + "condition": "random", + "fraction": "0.01", + "seed": "1441" + } + ], + "blocking": "false" + } + ] +}