CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ColinsSoperVariablesComputer.cc
Go to the documentation of this file.
1 //
2 
17 
20 
24 #include "TLorentzVector.h"
25 
26 
28  public:
29  explicit ColinsSoperVariablesComputer(const edm::ParameterSet & iConfig);
31 
32  virtual void produce(edm::Event & iEvent, const edm::EventSetup& iSetup) override;
33 
34  private:
36 };
37 
39  parentBosonToken_(consumes<edm::View<reco::Candidate> >(iConfig.getParameter<edm::InputTag>("parentBoson")))
40 {
41  produces<edm::ValueMap<float> >("costheta");
42  produces<edm::ValueMap<float> >("sin2theta");
43  produces<edm::ValueMap<float> >("tanphi");
44 }
45 
46 
48 {
49 }
50 
51 void
53  using namespace edm;
54 
55  // read input
57  iEvent.getByToken(parentBosonToken_, bosons);
58 
59 
60  // prepare vector for output
61  std::vector<float> values;
62  std::vector<float> values2;
63  std::vector<float> values3;
64 
65  // fill: use brute force
66  double costheta = -10.0;
67  double sin2theta = -10.0;
68  double tanphi = -10.0;
69 
70  const reco::Candidate* daughter1=NULL;
71  const reco::Candidate* daughter2=NULL;
72  TLorentzVector mu (0., 0., 0., 0.);
73  TLorentzVector mubar (0., 0., 0., 0.);
74  bool isOS = false;
75  int charge1=0, charge2 =0;
76  double res[3] = { -10., -10., -10.};
77 
78  View<reco::Candidate>::const_iterator boson, endbosons = bosons->end();
79 
80  for (boson = bosons->begin(); boson != endbosons; ++boson) {
81 
82  daughter1 = boson->daughter(0);
83  daughter2 = boson->daughter(1);
84 
85  if( !(0==daughter1 || 0==daughter2) ) {
86  isOS = false;
87  charge1 = daughter1->charge();
88  charge2 = daughter2->charge();
89  isOS = charge1*charge2<0;
90  if(isOS && charge1<0) {
91  mu.SetPxPyPzE( daughter1->px(), daughter1->py(), daughter1->pz(), daughter1->energy() );
92  mubar.SetPxPyPzE( daughter2->px(), daughter2->py(), daughter2->pz(), daughter2->energy() );
93  }
94  if(isOS && charge1>0) {
95  mu.SetPxPyPzE( daughter2->px(), daughter2->py(), daughter2->pz(), daughter2->energy() );
96  mubar.SetPxPyPzE( daughter1->px(), daughter1->py(), daughter1->pz(), daughter1->energy() );
97  }
98  }
99 
100 
101  calCSVariables(mu, mubar, res, boson->pz()<0.0);
102 
103  costheta = res[0];
104  sin2theta = res[1];
105  tanphi = res[2];
106 
107  values.push_back(costheta);
108  values2.push_back(sin2theta);
109  values3.push_back(tanphi);
110  }
111 
112 
113  // convert into ValueMap and store
114  std::auto_ptr<ValueMap<float> > valMap(new ValueMap<float>());
115  ValueMap<float>::Filler filler(*valMap);
116  filler.insert(bosons, values.begin(), values.end());
117  filler.fill();
118  iEvent.put(valMap, "costheta");
119 
120 
121  // ---> same for sin2theta
122  std::auto_ptr<ValueMap<float> > valMap2(new ValueMap<float>());
123  ValueMap<float>::Filler filler2(*valMap2);
124  filler2.insert(bosons, values2.begin(), values2.end());
125  filler2.fill();
126  iEvent.put(valMap2, "sin2theta");
127 
128  // ---> same for tanphi
129  std::auto_ptr<ValueMap<float> > valMap3(new ValueMap<float>());
130  ValueMap<float>::Filler filler3(*valMap3);
131  filler3.insert(bosons, values3.begin(), values3.end());
132  filler3.fill();
133  iEvent.put(valMap3, "tanphi");
134 
135 }
136 
137 
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
#define NULL
Definition: scimark2.h:8
ColinsSoperVariablesComputer(const edm::ParameterSet &iConfig)
int iEvent
Definition: GenABIO.cc:230
edm::EDGetTokenT< edm::View< reco::Candidate > > parentBosonToken_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
const int mu
Definition: Constants.h:22
const int mubar
Definition: Constants.h:23
void calCSVariables(TLorentzVector mu, TLorentzVector mubar, double *res, bool swap)
virtual void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
const_iterator end() const