-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrea Trapote
committed
Mar 13, 2023
1 parent
2171367
commit b765fc7
Showing
13 changed files
with
151 additions
and
317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#ifndef __PhysicsTools_PatAlgos_CalculatePtRatioRel__ | ||
#define __PhysicsTools_PatAlgos_CalculatePtRatioRel__ | ||
|
||
#include "DataFormats/BTauReco/interface/JetTag.h" | ||
|
||
#include <memory> | ||
#include <string> | ||
|
||
namespace pat { | ||
class Muon; | ||
} | ||
|
||
namespace reco { | ||
class JetCorrector; | ||
} // namespace reco | ||
|
||
namespace pat { | ||
class CalculatePtRatioRel { | ||
public: | ||
CalculatePtRatioRel(float dRmax); | ||
|
||
~CalculatePtRatioRel(); | ||
|
||
std::vector<float> computePtRatioRel(const pat::Muon& imuon, | ||
const reco::JetTagCollection& bTags, | ||
const reco::JetCorrector* correctorL1 = nullptr, | ||
const reco::JetCorrector* correctorL1L2L3Res = nullptr) const; | ||
|
||
private: | ||
float dRmax_; | ||
}; | ||
} // namespace pat | ||
#endif |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.