CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
CaloMiscalibTools Class Reference

#include <CalibCalorimetry/CaloMiscalibTools/interface/CaloMiscalibTools.h>

Inheritance diagram for CaloMiscalibTools:
edm::ESProducer edm::EventSetupRecordIntervalFinder edm::ESProxyFactoryProducer edm::eventsetup::DataProxyProvider

Public Types

typedef const
EcalIntercalibConstants
ReturnType
 
- Public Types inherited from edm::eventsetup::DataProxyProvider
typedef std::vector< std::pair
< DataKey, boost::shared_ptr
< DataProxy > > > 
KeyedProxies
 
typedef std::vector
< EventSetupRecordKey
Keys
 
typedef std::map
< EventSetupRecordKey,
KeyedProxies
RecordProxies
 

Public Member Functions

 CaloMiscalibTools (const edm::ParameterSet &)
 
ReturnType produce (const EcalIntercalibConstantsRcd &)
 
 ~CaloMiscalibTools ()
 
- Public Member Functions inherited from edm::ESProducer
 ESProducer ()
 
virtual ~ESProducer ()
 
- Public Member Functions inherited from edm::ESProxyFactoryProducer
 ESProxyFactoryProducer ()
 
virtual void newInterval (const eventsetup::EventSetupRecordKey &iRecordType, const ValidityInterval &iInterval)
 overrides DataProxyProvider method More...
 
virtual ~ESProxyFactoryProducer ()
 
- Public Member Functions inherited from edm::eventsetup::DataProxyProvider
 DataProxyProvider ()
 
const ComponentDescriptiondescription () const
 
bool isUsingRecord (const EventSetupRecordKey &) const
 
const KeyedProxieskeyedProxies (const EventSetupRecordKey &iRecordKey) const
 
void resetProxies (const EventSetupRecordKey &iRecordType)
 
void resetProxiesIfTransient (const EventSetupRecordKey &iRecordType)
 
void setAppendToDataLabel (const edm::ParameterSet &)
 
void setDescription (const ComponentDescription &iDescription)
 
std::set< EventSetupRecordKeyusingRecords () const
 
virtual ~DataProxyProvider ()
 
- Public Member Functions inherited from edm::EventSetupRecordIntervalFinder
const
eventsetup::ComponentDescription
descriptionForFinder () const
 
 EventSetupRecordIntervalFinder ()
 
std::set
< eventsetup::EventSetupRecordKey
findingForRecords () const
 
const ValidityIntervalfindIntervalFor (const eventsetup::EventSetupRecordKey &, const IOVSyncValue &)
 
void setDescriptionForFinder (const eventsetup::ComponentDescription &iDescription)
 
virtual ~EventSetupRecordIntervalFinder ()
 

Private Member Functions

void setIntervalFor (const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &)
 

Private Attributes

std::string barrelfile_
 
std::string barrelfileinpath_
 
std::string endcapfile_
 
std::string endcapfileinpath_
 
CaloMiscalibMapEcal map_
 

Additional Inherited Members

- Static Public Member Functions inherited from edm::eventsetup::DataProxyProvider
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::ESProducer
template<typename T >
void setWhatProduced (T *iThis, const es::Label &iLabel=es::Label())
 
template<typename T >
void setWhatProduced (T *iThis, const char *iLabel)
 
template<typename T >
void setWhatProduced (T *iThis, const std::string &iLabel)
 
template<typename T , typename TDecorator >
void setWhatProduced (T *iThis, const TDecorator &iDec, const es::Label &iLabel=es::Label())
 
template<typename T , typename TReturn , typename TRecord >
void setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const es::Label &iLabel=es::Label())
 
template<typename T , typename TReturn , typename TRecord , typename TArg >
void setWhatProduced (T *iThis, TReturn(T::*iMethod)(const TRecord &), const TArg &iDec, const es::Label &iLabel=es::Label())
 
- Protected Member Functions inherited from edm::ESProxyFactoryProducer
template<class TFactory >
void registerFactory (std::auto_ptr< TFactory > iFactory, const std::string &iLabel=std::string())
 
virtual void registerFactoryWithKey (const eventsetup::EventSetupRecordKey &iRecord, std::auto_ptr< eventsetup::ProxyFactoryBase > &iFactory, const std::string &iLabel=std::string())
 
virtual void registerProxies (const eventsetup::EventSetupRecordKey &iRecord, KeyedProxies &aProxyList)
 override DataProxyProvider method More...
 
- Protected Member Functions inherited from edm::eventsetup::DataProxyProvider
void eraseAll (const EventSetupRecordKey &iRecordKey)
 deletes all the Proxies in aStream More...
 
void invalidateProxies (const EventSetupRecordKey &iRecordKey)
 
template<class T >
void usingRecord ()
 
void usingRecordWithKey (const EventSetupRecordKey &)
 
- Protected Member Functions inherited from edm::EventSetupRecordIntervalFinder
template<class T >
void findingRecord ()
 
void findingRecordWithKey (const eventsetup::EventSetupRecordKey &)
 

Detailed Description

Description: Definition of CaloMiscalibTools

Implementation: <Notes on="" implementation>="">

Description: <one line="" class="" summary>="">

Implementation: <Notes on="" implementation>="">

Definition at line 51 of file CaloMiscalibTools.h.

Member Typedef Documentation

Definition at line 56 of file CaloMiscalibTools.h.

Constructor & Destructor Documentation

CaloMiscalibTools::CaloMiscalibTools ( const edm::ParameterSet iConfig)

Definition at line 37 of file CaloMiscalibTools.cc.

References barrelfile_, barrelfileinpath_, gather_cfg::cout, endcapfile_, endcapfileinpath_, edm::FileInPath::fullPath(), edm::ParameterSet::getUntrackedParameter(), map_, CaloMiscalibMapEcal::prefillMap(), produce(), and edm::ESProducer::setWhatProduced().

38 {
39  //the following line is needed to tell the framework what
40  // data is being produced
41  map_.prefillMap();
42 
43  barrelfileinpath_=iConfig.getUntrackedParameter<std::string> ("fileNameBarrel","");
44  endcapfileinpath_=iConfig.getUntrackedParameter<std::string> ("fileNameEndcap","");
45 
46  edm::FileInPath barrelfiletmp("CalibCalorimetry/CaloMiscalibTools/data/"+barrelfileinpath_);
47  edm::FileInPath endcapfiletmp("CalibCalorimetry/CaloMiscalibTools/data/"+endcapfileinpath_);
48 
49 
50  barrelfile_=barrelfiletmp.fullPath();
51  endcapfile_=endcapfiletmp.fullPath();
52 
53  std::cout <<"Barrel file is:"<< barrelfile_<<std::endl;
54  std::cout <<"endcap file is:"<< endcapfile_<<std::endl;
55 
56 
57  // added by Zhen (changed since 1_2_0)
59  findingRecord<EcalIntercalibConstantsRcd>();
60  //now do what ever other initialization is needed
61 }
T getUntrackedParameter(std::string const &, T const &) const
void setWhatProduced(T *iThis, const es::Label &iLabel=es::Label())
Definition: ESProducer.h:115
CaloMiscalibMapEcal map_
std::string endcapfileinpath_
std::string endcapfile_
std::string barrelfile_
std::string barrelfileinpath_
ReturnType produce(const EcalIntercalibConstantsRcd &)
tuple cout
Definition: gather_cfg.py:121
CaloMiscalibTools::~CaloMiscalibTools ( )

Definition at line 64 of file CaloMiscalibTools.cc.

65 {
66 
67  // do anything here that needs to be done at desctruction time
68  // (e.g. close files, deallocate resources etc.)
69 
70 }

Member Function Documentation

CaloMiscalibTools::ReturnType CaloMiscalibTools::produce ( const EcalIntercalibConstantsRcd iRecord)

Definition at line 79 of file CaloMiscalibTools.cc.

References barrelfile_, endcapfile_, CaloMiscalibMapEcal::get(), map_, MiscalibReaderFromXML::parseXMLMiscalibFile(), CaloMiscalibMapEcal::prefillMap(), and CaloMiscalibMapEcal::print().

Referenced by CaloMiscalibTools(), JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

80 {
81  map_.prefillMap();
84  if(!barrelfile_.empty()) barrelreader_.parseXMLMiscalibFile(barrelfile_);
85  if(!endcapfile_.empty())endcapreader_.parseXMLMiscalibFile(endcapfile_);
86  map_.print();
87  // Added by Zhen, need a new object so to not be deleted at exit
88  // std::cout<<"about to copy"<<std::endl;
90  // std::cout<<"mydata "<<mydata<<std::endl;
91  return mydata;
92 }
CaloMiscalibMapEcal map_
const EcalIntercalibConstants & get()
std::string endcapfile_
std::string barrelfile_
EcalIntercalibConstantMap EcalIntercalibConstants
void CaloMiscalibTools::setIntervalFor ( const edm::eventsetup::EventSetupRecordKey ,
const edm::IOVSyncValue ,
edm::ValidityInterval oValidity 
)
privatevirtual

Implements edm::EventSetupRecordIntervalFinder.

Definition at line 94 of file CaloMiscalibTools.cc.

References edm::IOVSyncValue::beginOfTime(), and edm::IOVSyncValue::endOfTime().

96  {
98 
99  }
static const IOVSyncValue & endOfTime()
Definition: IOVSyncValue.cc:97
std::pair< Time_t, Time_t > ValidityInterval
Definition: Time.h:19
static const IOVSyncValue & beginOfTime()

Member Data Documentation

std::string CaloMiscalibTools::barrelfile_
private

Definition at line 64 of file CaloMiscalibTools.h.

Referenced by CaloMiscalibTools(), and produce().

std::string CaloMiscalibTools::barrelfileinpath_
private

Definition at line 66 of file CaloMiscalibTools.h.

Referenced by CaloMiscalibTools().

std::string CaloMiscalibTools::endcapfile_
private

Definition at line 65 of file CaloMiscalibTools.h.

Referenced by CaloMiscalibTools(), and produce().

std::string CaloMiscalibTools::endcapfileinpath_
private

Definition at line 67 of file CaloMiscalibTools.h.

Referenced by CaloMiscalibTools().

CaloMiscalibMapEcal CaloMiscalibTools::map_
private

Definition at line 63 of file CaloMiscalibTools.h.

Referenced by CaloMiscalibTools(), and produce().