Skip to content

Commit dc88f54

Browse files
pbuehlerrolavick
andauthored
[PWGUD] Introducing configurable generatorIds in the table producers, which allows to specify the MC processes to consider (#10225)
Co-authored-by: rolavick <roman.lavicka@cern.ch>
1 parent 5d5e840 commit dc88f54

File tree

3 files changed

+224
-135
lines changed

3 files changed

+224
-135
lines changed

PWGUD/Core/decayTree.h

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,6 @@ class reconstructedParticle
201201

202202
private:
203203
std::string fName;
204-
205-
// status
206-
// 0: not defined
207-
// 1: ULS
208-
// 2: LS
209204
TLorentzVector fIVM;
210205
std::vector<int> fComb;
211206
};
@@ -896,11 +891,11 @@ class decayTree
896891
// M vs dcaXYZ
897892
hname = base;
898893
hname.append("MvsdcaXY_").append(res->name()).append(d1->name());
899-
annot = "M versus dcaXY; M (" + res->name() + ") GeV/c^{2}; dca_{XY} (" + d1->name() + ") {mu}m";
894+
annot = "M versus dcaXY; M (" + res->name() + ") GeV/c^{2}; dca_{XY} (" + d1->name() + ") #mu m";
900895
fhistPointers.insert({hname, registry.add(hname.c_str(), annot.c_str(), {HistType::kTH2F, {max, dcaxyax}})});
901896
hname = base;
902897
hname.append("MvsdcaZ_").append(res->name()).append(d1->name());
903-
annot = "M versus dcaZ; M (" + res->name() + ") GeV/c^{2}; dca_{Z} (" + d1->name() + ") {mu}m";
898+
annot = "M versus dcaZ; M (" + res->name() + ") GeV/c^{2}; dca_{Z} (" + d1->name() + ") #mu m";
904899
fhistPointers.insert({hname, registry.add(hname.c_str(), annot.c_str(), {HistType::kTH2F, {max, dcazax}})});
905900

906901
// M vs chi2 track

0 commit comments

Comments
 (0)