Skip to content

Commit 9f03017

Browse files
committed
Please consider the following formatting changes
1 parent 9599231 commit 9f03017

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

PWGDQ/Core/MCSignal.cxx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ MCSignal::MCSignal(int nProngs, const char* name /*= ""*/, const char* title /*=
4646

4747
//________________________________________________________________________________________________
4848
MCSignal::MCSignal(const char* name, const char* title, std::vector<MCProng> prongs, std::vector<int8_t> commonAncestors, bool excludeCommonAncestor) : TNamed(name, title),
49-
fProngs(prongs),
50-
fNProngs(prongs.size()),
51-
fCommonAncestorIdxs(commonAncestors),
52-
fExcludeCommonAncestor(excludeCommonAncestor),
53-
fTempAncestorLabel(-1),
54-
fDecayChannelIsExclusive(false),
55-
fDecayChannelIsNotExclusive(false)
49+
fProngs(prongs),
50+
fNProngs(prongs.size()),
51+
fCommonAncestorIdxs(commonAncestors),
52+
fExcludeCommonAncestor(excludeCommonAncestor),
53+
fTempAncestorLabel(-1),
54+
fDecayChannelIsExclusive(false),
55+
fDecayChannelIsNotExclusive(false)
5656
{
5757
}
5858

PWGDQ/Core/MCSignal.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class MCSignal : public TNamed
6666
{
6767
public:
6868
MCSignal();
69-
MCSignal(int nProngs, const char* name = "", const char* title = ""); // NOLINT
69+
MCSignal(int nProngs, const char* name = "", const char* title = ""); // NOLINT
7070
MCSignal(const char* name, const char* title, std::vector<MCProng> prongs, std::vector<int8_t> commonAncestors, bool excludeCommonAncestor = false);
7171
MCSignal(const MCSignal& c) = default;
7272
~MCSignal() override = default;
@@ -113,12 +113,12 @@ class MCSignal : public TNamed
113113
void PrintConfig();
114114

115115
private:
116-
std::vector<MCProng> fProngs; // vector of MCProng
117-
unsigned int fNProngs; // number of prongs
116+
std::vector<MCProng> fProngs; // vector of MCProng
117+
unsigned int fNProngs; // number of prongs
118118
std::vector<int8_t> fCommonAncestorIdxs; // index of the most recent ancestor, relative to each prong's history
119-
bool fExcludeCommonAncestor; // explicitly request that there is no common ancestor
120-
bool fDecayChannelIsExclusive; // if true, then the indicated mother particle has a number of daughters which is equal to the number of prongs defined in this MC signal
121-
bool fDecayChannelIsNotExclusive; // if true, then the indicated mother particle has a number of daughters which is larger than the number of prongs defined in this MC signal
119+
bool fExcludeCommonAncestor; // explicitly request that there is no common ancestor
120+
bool fDecayChannelIsExclusive; // if true, then the indicated mother particle has a number of daughters which is equal to the number of prongs defined in this MC signal
121+
bool fDecayChannelIsNotExclusive; // if true, then the indicated mother particle has a number of daughters which is larger than the number of prongs defined in this MC signal
122122
int fTempAncestorLabel;
123123

124124
template <typename T>

0 commit comments

Comments
 (0)