Skip to content
Snippets Groups Projects
Commit 17b606a4 authored by Paul Schuetze's avatar Paul Schuetze
Browse files

Clustering: make maximum scale of cluster uncertainty plot the pitch

parent 482468a3
No related branches found
No related tags found
No related merge requests found
...@@ -86,9 +86,9 @@ void Clustering4D::initialize() { ...@@ -86,9 +86,9 @@ void Clustering4D::initialize() {
title = m_detector->getName() + " Cluster multiplicity;clusters;events"; title = m_detector->getName() + " Cluster multiplicity;clusters;events";
clusterMultiplicity = new TH1F("clusterMultiplicity", title.c_str(), 50, -0.5, 49.5); clusterMultiplicity = new TH1F("clusterMultiplicity", title.c_str(), 50, -0.5, 49.5);
title = m_detector->getName() + " Cluster Error x;cluster error x [um];events"; title = m_detector->getName() + " Cluster Error x;cluster error x [um];events";
clusterErrorX = new TH1F("clusterErrorX", title.c_str(), 100, 0, 1000); clusterErrorX = new TH1F("clusterErrorX", title.c_str(), 100, 0, m_detector->getPitch().X());
title = m_detector->getName() + " Cluster Error y;cluster error y [um];events"; title = m_detector->getName() + " Cluster Error y;cluster error y [um];events";
clusterErrorY = new TH1F("clusterErrorY", title.c_str(), 100, 0, 1000); clusterErrorY = new TH1F("clusterErrorY", title.c_str(), 100, 0, m_detector->getPitch().Y());
title = title =
m_detector->getName() + " pixel - seed pixel timestamp (all pixels w/o seed);ts_{pixel} - ts_ {seed} [ns];events"; m_detector->getName() + " pixel - seed pixel timestamp (all pixels w/o seed);ts_{pixel} - ts_ {seed} [ns];events";
pxTimeMinusSeedTime = new TH1F("pxTimeMinusSeedTime", title.c_str(), 1000, -99.5 * 1.5625, 900.5 * 1.5625); pxTimeMinusSeedTime = new TH1F("pxTimeMinusSeedTime", title.c_str(), 1000, -99.5 * 1.5625, 900.5 * 1.5625);
......
...@@ -35,6 +35,7 @@ For each detector the following plots are produced: ...@@ -35,6 +35,7 @@ For each detector the following plots are produced:
* 2D cluster positions in global coordinates * 2D cluster positions in global coordinates
* Cluster times * Cluster times
* Cluster multiplicity * Cluster multiplicity
* Cluster uncertainty
* Time difference between seed pixel and other pixels in a cluster for different cluster sizes and vs. the pixel charge * Time difference between seed pixel and other pixels in a cluster for different cluster sizes and vs. the pixel charge
### Usage ### Usage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment