Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 25 additions & 16 deletions Modules/ITS/include/ITS/ITSClusterTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,36 @@ class ITSClusterTask : public TaskInterface

static constexpr int NLayer = 7;
static constexpr int NLayerIB = 3;

TH2D* hClusterVsBunchCrossing;
std::vector<TObject*> mPublishedObjects;
TH1D* hClusterSizeIB[7][48][9];
TH1D* hClusterSizeIBmonitor[7][48][9];
TH1D* hAverageClusterSummary[7];
TH1D* hClusterSizeSummaryIB[7][48][9];
TH1D* hClusterSizeMonitorIB[7][48][9];
TH1D* hClusterTopologySummaryIB[7][48][9];
TH1D* hGroupedClusterSizeSummaryIB[7][48][9];

TH1D* hClusterSizeLayerSummary[7];
TH1D* hClusterTopologyLayerSummary[7];
TH1D* hGroupedClusterSizeLayerSummary[7];

TH1D* hClusterTopologyIB[7][48][9];
TH2D* hOccupancyIB[7];
TH2D* hOccupancyIBmonitor[7]; // will be used in online data monitoring, showing occupation for the last N ROFs
TH2D* hAverageClusterIB[7];
TH2D* hAverageClusterIBmonitor[7];
TH2D* hAverageClusterOccupancySummaryIB[7];
TH2D* hAverageClusterOccupancyMonitorIB[7]; // will be used in online data monitoring, showing occupation for the last N ROFs
TH2D* hAverageClusterSizeSummaryIB[7];
TH2D* hAverageClusterSizeMonitorIB[7];

Int_t mClusterOccupancyIB[7][48][9];
Int_t mClusterOccupancyIBmonitor[7][48][9];
TH1D* hClusterSizeOB[7][48][14];
TH1D* hClusterSizeOBmonitor[7][48][14];
TH1D* hClusterTopologyOB[7][48][14];
TH2D* hOccupancyOB[7];
TH2D* hOccupancyOBmonitor[7]; // will be used in online data monitoring, showing occupation for the last N ROFs
TH2D* hAverageClusterOB[7];
TH2D* hAverageClusterOBmonitor[7];

TH1D* hClusterSizeOB[7][48][14]; // used to calculate hAverageClusterSizeSummaryIB
TH1D* hClusterSizeMonitorOB[7][48][14]; // used to calculate hAverageClusterSizeMonitorIB

TH1D* hGroupedClusterSizeSummaryOB[7][48];
TH1D* hClusterSizeSummaryOB[7][48];
TH1D* hClusterTopologySummaryOB[7][48];

TH2D* hAverageClusterOccupancySummaryOB[7];
TH2D* hAverageClusterOccupancyMonitorOB[7]; // will be used in online data monitoring, showing occupation for the last N ROFs
TH2D* hAverageClusterSizeSummaryOB[7];
TH2D* hAverageClusterSizeMonitorOB[7];

// THnSparseD *sClustersSize[7];
TH2Poly* mGeneralOccupancy;
Expand Down
8 changes: 4 additions & 4 deletions Modules/ITS/itsCluster.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"config": {
"database": {
"implementation": "CCDB",
"host": "ccdb-test.cern.ch:8080",
"host": "188.184.2.55:8080",
"username": "not_applicable",
"password": "not_applicable",
"name": "not_applicable"
Expand All @@ -20,7 +20,7 @@
"url": ""
},
"conditionDB": {
"url": "ccdb-test.cern.ch:8080"
"url": "188.184.2.55:8080"
}
},
"tasks": {
Expand All @@ -41,7 +41,7 @@
"layer": "1111111",
"clusterDictionaryPath": "/home/its/aisakov/workdir/ITSdictionary.bin",
"geomPath": "./o2sim_geometry.root",
"nThreads": "4"
"nThreads": "1"
}

}
Expand All @@ -68,7 +68,7 @@
"id": "compclus",
"active": "true",
"machines": [],
"query": "compclus:ITS/COMPCLUSTERS/0;clustersrof:ITS/CLUSTERSROF/0",
"query": "compclus:ITS/COMPCLUSTERS/0;clustersrof:ITS/CLUSTERSROF/0;patterns:ITS/PATTERNS/0",
"samplingConditions": [
{
"condition": "random",
Expand Down
Loading