Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

record for xtal-dependent seeding thresholds #28324

Merged
merged 2 commits into from Nov 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CondFormats/DataRecord/interface/EcalPFSeedingThresholdsRcd.h
@@ -0,0 +1,7 @@
#ifndef CondFormats_DataRecord_EcalPFSeedingThresholdsRcd_h
#define CondFormats_DataRecord_EcalPFSeedingThresholdsRcd_h

#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
class EcalPFSeedingThresholdsRcd : public edm::eventsetup::EventSetupRecordImplementation<EcalPFSeedingThresholdsRcd> {
};
#endif
4 changes: 4 additions & 0 deletions CondFormats/DataRecord/src/EcalPFSeedingThresholdsRcd.cc
@@ -0,0 +1,4 @@
#include "CondFormats/DataRecord/interface/EcalPFSeedingThresholdsRcd.h"
#include "FWCore/Framework/interface/eventsetuprecord_registration_macro.h"

EVENTSETUP_RECORD_REG(EcalPFSeedingThresholdsRcd);
14 changes: 14 additions & 0 deletions CondFormats/EcalObjects/interface/EcalPFSeedingThresholds.h
@@ -0,0 +1,14 @@
#ifndef CondFormats_EcalObjects_EcalPFSeedingThresholds_H
#define CondFormats_EcalObjects_EcalPFSeedingThresholds_H
/**
* Author: Maria Giulia Ratti, ETH Zurich
* Created: 05 Sep 2019
* $Id: EcalPFSeedingThresholds.h, 2019/09/05 20:21:42 mratti Exp $
**/
#include "CondFormats/EcalObjects/interface/EcalCondObjectContainer.h"

typedef float EcalPFSeedingThreshold;
typedef EcalFloatCondObjectContainer EcalPFSeedingThresholdsMap;
typedef EcalPFSeedingThresholdsMap EcalPFSeedingThresholds;

#endif