1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef OPTICALALIGNMENTSRCD_H
#define OPTICALALIGNMENTSRCD_H
#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
/* #include "FWCore/ParameterSet/interface/ParameterSet.h" */
#include <iostream>
class OpticalAlignmentsRcd : public edm::eventsetup::EventSetupRecordImplementation<OpticalAlignmentsRcd> {
/* public: */
/* OpticalAlignmentsRcd() {}; */
/* OpticalAlignmentsRcd (const edm::ParameterSet& ps ) { */
/* std::cout << " what to do with parameterset? " << std::endl; */
/* } */
};
#endif
|