CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ImpactParameter.cc
Go to the documentation of this file.
1 /* class ImpactParameter
2  * EDProducer for TauImpactParameterInfoCollection
3  * author: Andrea Rizzi
4  */
5 
6 // system include files
7 #include <memory>
8 
9 // user include files
17 
23 
25 
27 
28 
30 public:
31  explicit ImpactParameter(const edm::ParameterSet&);
33 
34 
35  virtual void produce(edm::Event&, const edm::EventSetup&);
36 private:
41 };
42 
43 
44 //
45 // constructors and destructor
46 //
48 
49  jetTrackSrc = iConfig.getParameter<edm::InputTag>("JetTagProd");
50  vertexSrc = iConfig.getParameter<edm::InputTag>("vertexSrc");
51  usingVertex = iConfig.getParameter<bool>("useVertex");
52 
53  algo = new ImpactParameterAlgorithm(iConfig);
54 
55  std::string modulname = iConfig.getParameter<std::string>( "@module_label" );
56  produces<reco::JetTagCollection>().setBranchAlias(modulname);
57  std::string infoBranchName = modulname + "Info";
58  produces<reco::TauImpactParameterInfoCollection>().setBranchAlias(infoBranchName);
59 }
60 
61 
63  delete algo;
64 }
65 
66 
67 
68 //
69 // member functions
70 //
71 // ------------ method called to produce the data ------------
73 
74  using namespace reco;
75 
77  iEvent.getByLabel(jetTrackSrc,isolatedTaus);
78 
79  std::auto_ptr<JetTagCollection> tagCollection;
80  std::auto_ptr<TauImpactParameterInfoCollection> extCollection( new TauImpactParameterInfoCollection() );
81  if (not isolatedTaus->empty()) {
82  edm::RefToBaseProd<reco::Jet> prod( isolatedTaus->begin()->jet() );
83  tagCollection.reset( new JetTagCollection(prod) );
84  } else {
85  tagCollection.reset( new JetTagCollection() );
86  }
87 
89  iSetup.get<TransientTrackRecord>().get("TransientTrackBuilder",builder);
90  algo->setTransientTrackBuilder(builder.product());
91 
92  Vertex PV;
93  if (usingVertex) {
95  iEvent.getByLabel(vertexSrc,vertices);
96 
97  const reco::VertexCollection vertCollection = *(vertices.product());
98  reco::VertexCollection::const_iterator iVertex;
99 
100  for(iVertex = vertCollection.begin();iVertex!=vertCollection.end();iVertex++){
101  PV = *iVertex;
102  }
103 
104  } else {
106  e(0,0)=0;
107  e(1,1)=0;
108  e(2,2)=0;
109  Vertex::Point p(0,0,0);
110 
111  Vertex dummyPV(p,e,1,1,1);
112  PV = dummyPV;
113  }
114 
115  for (unsigned int i = 0; i < isolatedTaus->size(); ++i) {
116  IsolatedTauTagInfoRef tauRef(isolatedTaus, i);
117  std::pair<float, TauImpactParameterInfo> ipInfo = algo->tag(tauRef,PV);
118  tagCollection->setValue(i, ipInfo.first);
119  extCollection->push_back(ipInfo.second);
120  }
121 
122  iEvent.put(extCollection);
123  iEvent.put(tagCollection);
124 }
125 
126 
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
virtual void produce(edm::Event &, const edm::EventSetup &)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
math::Error< dimension >::type Error
covariance error matrix (3x3)
Definition: Vertex.h:43
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
JetFloatAssociation::Container JetTagCollection
Definition: JetTag.h:18
int iEvent
Definition: GenABIO.cc:230
std::vector< TauImpactParameterInfo > TauImpactParameterInfoCollection
void setTransientTrackBuilder(const TransientTrackBuilder *)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
math::XYZPoint Point
point in the space
Definition: Vertex.h:39
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:402
ImpactParameter(const edm::ParameterSet &)
T const * product() const
Definition: Handle.h:81
edm::InputTag jetTrackSrc
const T & get() const
Definition: EventSetup.h:55
ImpactParameterAlgorithm * algo
edm::InputTag vertexSrc
std::pair< float, reco::TauImpactParameterInfo > tag(const reco::IsolatedTauTagInfoRef &, const reco::Vertex &)