Skip to content

Commit

Permalink
minor improvements in ZMuMuMassConstraintParameterFinder
Browse files Browse the repository at this point in the history
  • Loading branch information
mmusich committed Feb 11, 2024
1 parent de80e9e commit e868d3d
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
class ZMuMuMassConstraintParameterFinder : public edm::one::EDAnalyzer<edm::one::SharedResources> {
public:
explicit ZMuMuMassConstraintParameterFinder(const edm::ParameterSet&);
~ZMuMuMassConstraintParameterFinder() override;
~ZMuMuMassConstraintParameterFinder() override = default;

static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);

Expand Down Expand Up @@ -117,8 +117,6 @@ ZMuMuMassConstraintParameterFinder ::ZMuMuMassConstraintParameterFinder(const ed
muonInfoFromZ_.setupTree("di_muon_from_Z", fs);
}

ZMuMuMassConstraintParameterFinder ::~ZMuMuMassConstraintParameterFinder() {}

//
// member functions
//
Expand Down Expand Up @@ -158,8 +156,8 @@ void ZMuMuMassConstraintParameterFinder ::fillDescriptions(edm::ConfigurationDes
desc.add<double>("ptMin", 15.0);
desc.add<double>("etaMin", -3.0);
desc.add<double>("etaMax", 3.0);
desc.add<double>("phiMin", -3.1416);
desc.add<double>("phiMax", 3.1416);
desc.add<double>("phiMin", -M_PI);
desc.add<double>("phiMax", M_PI);
desc.add<double>("minMassPair", 85.8);
desc.add<double>("maxMassPair", 95.8);
descriptions.add("zMuMuMassConstraintParameterFinder", desc);
Expand Down

0 comments on commit e868d3d

Please sign in to comment.