Skip to content

Commit 9878b6a

Browse files
committed
use lowerCamelCase
1 parent f76894e commit 9878b6a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

PWGHF/HFJ/Tasks/taskDstarPolarisationInJet.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ struct HfTaskDstarPolarisationInJet {
8383
float invMassMax{1000.f};
8484
float bkgRotationAngleStep{0.f};
8585
uint8_t nMassHypos{0u};
86-
struct HistoInput{
86+
struct HfHistoInput{
8787
float invMassCharmHad;
8888
float ptCharmHad;
8989
float rapCharmHad;
@@ -296,7 +296,7 @@ struct HfTaskDstarPolarisationInJet {
296296
/// \param numTpcClsMin is the minimum number of TPC clusters of the daughter tracks
297297
/// \param nMuons is the number of muons from daughter decays
298298
/// \param isPartRecoDstar is a flag indicating if it is a partly reconstructed Dstar meson (MC only)
299-
void fillRecoHistos(charm_polarisation::CosThetaStarType cosThetaStarType, bool withMl, bool doMc, bool isPartRecoDstar, HistoInput& recoHistoInput)
299+
void fillRecoHistos(charm_polarisation::CosThetaStarType cosThetaStarType, bool withMl, bool doMc, bool isPartRecoDstar, HfHistoInput& recoHistoInput)
300300
{
301301

302302
if (cosThetaStarType == charm_polarisation::CosThetaStarType::Helicity) { // Helicity
@@ -809,7 +809,7 @@ struct HfTaskDstarPolarisationInJet {
809809
if (activateTHnSparseCosThStarHelicity) {
810810
// helicity
811811
cosThetaStarHelicity = helicityVec.Dot(threeVecDauCM) / std::sqrt(threeVecDauCM.Mag2()) / std::sqrt(helicityVec.Mag2());
812-
HistoInput HelicityInput{
812+
HfHistoInput helicityInput{
813813
.invMassCharmHad = invMassCharmHadForSparse,
814814
.ptCharmHad = ptCharmHad,
815815
.rapCharmHad = rapidity,
@@ -826,12 +826,12 @@ struct HfTaskDstarPolarisationInJet {
826826
.zParallel = zParallel,
827827
.jetPt = jetPt
828828
};
829-
fillRecoHistos(charm_polarisation::CosThetaStarType::Helicity, withMl, doMc, partRecoDstar, HelicityInput);
829+
fillRecoHistos(charm_polarisation::CosThetaStarType::Helicity, withMl, doMc, partRecoDstar, helicityInput);
830830
}
831831
if (activateTHnSparseCosThStarProduction) {
832832
// production
833833
cosThetaStarProduction = normalVec.Dot(threeVecDauCM) / std::sqrt(threeVecDauCM.Mag2()) / std::sqrt(normalVec.Mag2());
834-
HistoInput ProductionInput{
834+
HfHistoInput productionInput{
835835
.invMassCharmHad = invMassCharmHadForSparse,
836836
.ptCharmHad = ptCharmHad,
837837
.rapCharmHad = rapidity,
@@ -848,12 +848,12 @@ struct HfTaskDstarPolarisationInJet {
848848
.zParallel = zParallel,
849849
.jetPt = jetPt
850850
};
851-
fillRecoHistos(charm_polarisation::CosThetaStarType::Production, withMl, doMc, partRecoDstar, ProductionInput);
851+
fillRecoHistos(charm_polarisation::CosThetaStarType::Production, withMl, doMc, partRecoDstar, productionInput);
852852
}
853853
if (activateTHnSparseCosThStarJetAxis) {
854854
// jet axis
855855
cosThetaStarJet = jetaxisVec.Dot(threeVecDauCM) / std::sqrt(threeVecDauCM.Mag2()) / std::sqrt(jetaxisVec.Mag2());
856-
HistoInput JetAxisInput{
856+
HfHistoInput jetAxisInput{
857857
.invMassCharmHad = invMassCharmHadForSparse,
858858
.ptCharmHad = ptCharmHad,
859859
.rapCharmHad = rapidity,
@@ -870,7 +870,7 @@ struct HfTaskDstarPolarisationInJet {
870870
.zParallel = zParallel,
871871
.jetPt = jetPt
872872
};
873-
fillRecoHistos(charm_polarisation::CosThetaStarType::JetAxis, withMl, doMc, partRecoDstar, JetAxisInput);
873+
fillRecoHistos(charm_polarisation::CosThetaStarType::JetAxis, withMl, doMc, partRecoDstar, jetAxisInput);
874874
}
875875
} /// end loop over mass hypotheses
876876

0 commit comments

Comments
 (0)