Go to the documentation of this file.00001
00002
00003
00004
00005
00007 #include <memory>
00008 #include <string>
00009 #include "FWCore/Framework/interface/Frameworkfwd.h"
00010 #include "FWCore/Framework/interface/EDProducer.h"
00011 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00012 #include "FWCore/Framework/interface/Event.h"
00013 #include "FWCore/Framework/interface/MakerMacros.h"
00014 #include "FWCore/Framework/interface/EventSetup.h"
00015 #include "FWCore/Framework/interface/ESHandle.h"
00016
00017 #include "RecoRomanPot/RecoFP420/interface/ReconstructerFP420.h"
00018 #include "DataFormats/FP420Cluster/interface/TrackCollectionFP420.h"
00019 #include "DataFormats/FP420Cluster/interface/RecoCollectionFP420.h"
00020
00021
00022
00023
00024 #include <iostream>
00025 using namespace std;
00026
00027
00028 namespace cms
00029 {
00030 ReconstructerFP420::ReconstructerFP420(const edm::ParameterSet& conf):conf_(conf) {
00031
00032 edm::LogInfo ("ReconstructerFP420 ") <<"Enter the FP420 Reco constructer";
00033
00034
00035 verbosity = conf_.getUntrackedParameter<int>("VerbosityLevel");
00036 if (verbosity > 0) {
00037 std::cout << "Constructor of ReconstructerFP420" << std::endl;
00038 }
00039
00040
00041 std::string alias ( conf.getParameter<std::string>("@module_label") );
00042
00043 produces<RecoCollectionFP420>().setBranchAlias( alias );
00044
00045 trackerContainers.clear();
00046 trackerContainers = conf.getParameter<std::vector<std::string> >("ROUList");
00047 VtxFlag = conf.getParameter<int>("VtxFlagGenRec");
00048 m_genReadoutName = conf.getParameter<string>("genReadoutName");
00049
00050
00051
00052 sFP420RecoMain_ = new FP420RecoMain(conf_);
00053
00054 }
00055
00056
00057 ReconstructerFP420::~ReconstructerFP420() {
00058 if (verbosity > 0) {
00059 std::cout << "ReconstructerFP420:delete FP420RecoMain" << std::endl;
00060 }
00061 delete sFP420RecoMain_;
00062 }
00063
00064
00065 void ReconstructerFP420::beginJob() {
00066 if (verbosity > 0) {
00067 std::cout << "ReconstructerFP420:BeginJob method " << std::endl;
00068 }
00069 }
00070
00071
00072 void ReconstructerFP420::produce(edm::Event& iEvent, const edm::EventSetup& iSetup)
00073 {
00074
00075
00076 using namespace edm;
00077 using namespace std;
00078
00079
00080
00081
00082
00083
00084 double vtxGenX = 0.;
00085 double vtxGenY = 0.;
00086 double vtxGenZ = 0.;
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149 double VtxX = 0.;
00150 double VtxY = 0.;
00151 double VtxZ = 0.;
00152 if(VtxFlag == 1) {
00153 VtxX = vtxGenX;
00154 VtxY = vtxGenY;
00155 VtxZ = vtxGenZ;
00156 }
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175 Handle<TrackCollectionFP420> input;
00176 iEvent.getByLabel( trackerContainers[0] , input);
00177
00178
00179
00180
00181
00182 std::auto_ptr<RecoCollectionFP420> toutput(new RecoCollectionFP420);
00183
00184
00185
00186
00187
00188
00189 std::vector<RecoFP420> collector;
00190 collector.clear();
00191 RecoCollectionFP420::Range inputRange;
00192 inputRange.first = collector.begin();
00193 inputRange.second = collector.end();
00194
00195 unsigned int detID = 0;
00196 toutput->putclear(inputRange,detID);
00197
00198 unsigned int StID = 1;
00199 toutput->putclear(inputRange,StID);
00200 StID = 2;
00201 toutput->putclear(inputRange,StID);
00202
00203
00204
00205
00206 toutput->clear();
00207
00208
00209
00210 sFP420RecoMain_->run(input, toutput, VtxX, VtxY, VtxZ);
00211
00212
00213
00214 if (verbosity > 0) {
00215 std::cout << "ReconstructerFP420: iEvent.put(toutput)" << std::endl;
00216 }
00217 iEvent.put(toutput);
00218 if (verbosity > 0) {
00219 std::cout << "ReconstructerFP420: iEvent.put(toutput) DONE" << std::endl;
00220 }
00221 }
00222
00223 }
00224
00225