DAS  3.0
Das Analysis System
DAS::MN Namespace Reference

Classes

struct  Hist
 
struct  Obs2Jets
 
struct  ObsMiniJets
 

Functions

void getMNobservables (const vector< fs::path > inputs, const fs::path output, const pt::ptree &config, const int steering, const DT::Slice slice={1, 0})
 
template<typename Jet >
std::optional< std::pair< Jet, Jet > > GetMNJet (std::vector< Jet > jets, std::function< bool(Jet &)> ptcut=[](Jet &jet) {return jet.p4.Pt()< 35 ;})
 
template<typename Jet >
std::vector< Jet > GetMiniJets (std::vector< Jet > jets, const std::pair< Jet, Jet > &MNJets, std::function< bool(Jet &)> ptcut=[](Jet &jet) {return jet.p4.Pt()< 20;})
 

Variables

static const double minY = binsY.front()
 
static const double maxY = binsY.back()
 
static const double maxy = 4.7
 
static const double minpt = 32
 
static const double maxpt = 1.e10
 

Detailed Description

The namespace MN_Helper contains the classes that are needed by getMNobservables.cc to build the histograms. Two types of objects are present here: bs2Jets and ObsMiniJets that contains structures to store the observables themselves (they are higher level physics objects) and Hist that contains histograms.

Function Documentation

◆ GetMiniJets()

std::vector< Jet > GetMiniJets ( std::vector< Jet >  jets,
const std::pair< Jet, Jet > &  MNJets,
std::function< bool(Jet &)>  ptcut = [](Jet& jet) {return jet.p4.Pt()<20;} 
)

This function takes as an input a vector of jet, a pair of Mueller-Navelet jets in this event and a selection fuction. All the jet for which the selection function is false are dicarded. Remove all the jets that are at higher-or-equal rapidity than the first member of the pair (considered as the 'leading MN jet') or lower-or-equal rapidity than the second member of the pair (considered a the 'subleading MN jet'). The function is build assuming that the two Mueller-Navelet jets that are provided are also present in the vector of jets of the event. The two Mueller-Navelet jets are removed by the lower-or-equal / higher-or-equal logic of the sample.

Note
there is no consistency check. So if the two MNJets that are given are not present in the vector of jets, it will not throw any error.
if the paire provided is trivial, it will not throw any error. The non-triviallity must be check before hand.
As this function is a template function, it is declared and defined in the common.h. Definitions of template functions are not compiled until they are instantiated with a specific type instance.
Todo:
check the consistency of this condition
Todo:
check the consistency of this condition
129 {
130  jets.erase(std::remove_if(jets.begin(), jets.end(), ptcut), jets.end());
131  jets.erase(std::remove_if(jets.begin(), jets.end(),
132  [MNJets](Jet& jet){return jet.p4.Eta() >= MNJets.first.p4.Eta();}), jets.end());
133 
134  jets.erase(std::remove_if(jets.begin(), jets.end(),
135  [MNJets](Jet& jet){return jet.p4.Eta() <= MNJets.second.p4.Eta();}), jets.end());
136 
137  std::sort( jets.begin(), jets.end() , [](Jet& j1, Jet& j2)
138  {return j1.p4.Eta() > j2.p4.Eta();} );
139 
140  return jets;
141 }

◆ GetMNJet()

std::optional< std::pair< Jet, Jet > > GetMNJet ( std::vector< Jet >  jets,
std::function< bool(Jet &)>  ptcut = [](Jet& jet) {return jet.p4.Pt() < 35 ;} 
)

This function takes as an input a vector of jet and a function<bool(Jet&)>. It finds the two jets that are th most bakward and most forward in the event and satisfies the cut implemented in the function<bool(Jet&)> provided as argument. This function is apllied to all the jets. If it return false, the jets are discarded. The out is an optional. So that if there are no jets satifying the cuts in the event, it returns nullopt.

Note
As this function is a template function, it is declared and defined in the common.h. Definitions of template functions are not compiled until they are instantiated with a specific type instance.
Todo:
check the consistency of this condition
Todo:
check the consistency of this condition
99 {
100  jets.erase(remove_if(jets.begin(), jets.end(), ptcut), jets.end());
101  if (jets.size() < 2) return std::nullopt;
102  auto result = minmax_element( jets.begin(), jets.end() , [](Jet& j1, Jet& j2)
103  {return j1.p4.Eta() > j2.p4.Eta();} );
104 
105  if (result.first->p4.Eta() <= 0 || result.second->p4.Eta() >= 0) return std::nullopt;
106  return std::make_optional<std::pair<Jet,Jet>>(*result.first, *result.second);
107 }

◆ getMNobservables()

void DAS::MN::getMNobservables ( const vector< fs::path >  inputs,
const fs::path  output,
const pt::ptree &  config,
const int  steering,
const DT::Slice  slice = {1,0} 
)

Calculate the observables that can be used to caracterise Mueller-Navelet Jets.

Parameters
inputsinput ROOT files (n-tuples)
outputname of output root file containing the histograms
configconfig file from `DTOptions`
steeringsteering parameters from `DTOptions`
sliceslices for running
180  {1,0}
181  )
182 {
183  cout << __func__ << ' ' << slice << " start" << endl;
184 
185  DT::Flow flow(steering, inputs);
186  auto tIn = flow.GetInputTree(slice);
187  auto [fOut, tOut] = flow.GetOutput(output);
188 
189  DT::MetaInfo metainfo(tOut);
190  metainfo.Check(config);
191  auto isMC = metainfo.Get<bool>("flags", "isMC");
192 
193  auto gEv = flow.GetBranchReadOnly<GenEvent>("genEvent");
194  auto rEv = flow.GetBranchReadOnly<RecEvent>("recEvent");
195 
196  auto recJets = flow.GetBranchReadOnly<vector<RecJet>>("recJets");
197  auto genJets = isMC ? flow.GetBranchReadOnly<vector<GenJet>>("genJets") : nullptr;
198 
199  Hist genHist("gen"), // NOTE: one should only declare the object if (isMC)
200  recHist("rec");
201 
202  for (DT::Looper looper(tIn); looper(); ++looper) {
203  [[ maybe_unused ]]
204  static auto& cout = (steering & DT::verbose) == DT::verbose ? ::cout : DT::dev_null;
205 
206  auto MNJets = GetMNJet<RecJet>(*recJets, [](RecJet jet){return jet.CorrPt() < 35;});
207  if (MNJets) {
208  double recy = std::abs( MNJets->first.p4.Eta() - MNJets->second.p4.Eta() );
209  bool LowRecY = recy < minY,
210  HighRecY = recy >= maxY;
211  bool goodRec = (!LowRecY) && (!HighRecY)
212  && MNJets->first.p4.Eta() < maxy && MNJets->second.p4.Eta() < maxy
213  && minpt < MNJets->first.CorrPt() && MNJets->first.CorrPt() < maxpt
214  && minpt < MNJets->second.CorrPt() && MNJets->second.CorrPt() < maxpt;
215 
216  if (goodRec) {
217  double evweight = rEv->weights.front();
218  if (isMC) evweight *= gEv->weights.front();
219  recHist.Fill(*recJets, evweight);
220  Obs2Jets obs2jets(MNJets->first, MNJets->second);
221  auto minijets = GetMiniJets(*recJets, *MNJets, function<bool(RecJet&)>([](RecJet& jet){return jet.CorrPt() < 20;}));
222  ObsMiniJets obsminijets(minijets);
223  recHist.Fill(obs2jets, obsminijets, evweight);
224  }
225  }
226 
227  if (!isMC) continue;
228 
229  auto genMNJets = GetMNJet<GenJet>(*genJets, [](GenJet jet){return jet.p4.Pt() < 35;});
230  if (genMNJets) {
231  double genY = std::abs( genMNJets->first.p4.Eta() - genMNJets->second.p4.Eta() );
232  bool LowGenY = genY < minY,
233  HighGenY = genY >= maxY,
234  goodGen = (!LowGenY) && (!HighGenY)
235  && genMNJets->first.p4.Eta() < maxy && genMNJets->second.p4.Eta() < maxy
236  && minpt < genMNJets->first.p4.Pt() && genMNJets->first.p4.Pt() < maxpt
237  && minpt < genMNJets->second.p4.Pt() && genMNJets->second.p4.Pt() < maxpt;
238 
239  if (goodGen) {
240  double evweight = gEv->weights.front();
241  genHist.Fill(*genJets, evweight);
242  Obs2Jets obs2jets(genMNJets->first, genMNJets->second);
243  auto minijets = GetMiniJets(*genJets, *genMNJets, function<bool(GenJet&)>([](GenJet& jet){return jet.p4.Pt() < 20;}));
244  ObsMiniJets obsminijets(minijets);
245  genHist.Fill(obs2jets, obsminijets, evweight);
246  }
247  }
248  }
249 
250  recHist.Write(fOut);
251  if (isMC)
252  genHist.Write(fOut);
253 
254  metainfo.Set<bool>("git", "complete", true);
255 
256  cout << __func__ << ' ' << slice << " end" << endl;
257 }

Variable Documentation

◆ maxpt

const double maxpt = 1.e10
static

◆ maxY

const double maxY = binsY.back()
static

◆ maxy

const double maxy = 4.7
static

◆ minpt

const double minpt = 32
static

◆ minY

const double minY = binsY.front()
static
Darwin::Tools::Flow
User-friendly handling of input and output n-tuples.
Definition: Flow.h:78
Step::verbose
static bool verbose
Definition: Step.h:40
Darwin::Tools::Looper
Facility to loop over a n-tuple, including parallelisation and printing.
Definition: Looper.h:22
DAS::MN::maxy
static const double maxy
Definition: getMNobservables.cc:38
DAS::MN::maxY
static const double maxY
Definition: getMNobservables.cc:38
Darwin::Tools::MetaInfo
Generic meta-information for n-tuple (including speficities to Darwin).
Definition: MetaInfo.h:68
DAS::MN::minpt
static const double minpt
Definition: getMNobservables.cc:39
Ntupliser_cfg.jets
string jets
Definition: Ntupliser_cfg.py:41
DAS::MN::minY
static const double minY
Definition: getMNobservables.cc:38
Ntupliser_cfg.config
config
Definition: Ntupliser_cfg.py:317
DAS::MN::maxpt
static const double maxpt
Definition: getMNobservables.cc:39
Ntupliser_cfg.isMC
dictionary isMC
Definition: Ntupliser_cfg.py:61
jercExample.inputs
def inputs
Definition: jercExample.py:118
Darwin::Tools::dev_null
static std::ostream dev_null(nullptr)
to redirect output stream to nowhere
DAS::MN::GetMiniJets
std::vector< Jet > GetMiniJets(std::vector< Jet > jets, const std::pair< Jet, Jet > &MNJets, std::function< bool(Jet &)> ptcut=[](Jet &jet) {return jet.p4.Pt()< 20;})
Definition: MuellerNavelet.h:128