CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MultiChainEvent.h
Go to the documentation of this file.
1 #ifndef DataFormats_FWLite_MultiChainEvent_h
2 #define DataFormats_FWLite_MultiChainEvent_h
3 // -*- C++ -*-
4 //
5 // Package: FWLite
6 // Class : MultiChainEvent
7 //
16 //
17 // Original Author: Salvatore Rappoccio
18 // Created: Thu Jul 9 22:05:56 CDT 2009
19 //
20 #if !defined(__CINT__) && !defined(__MAKECINT__)
21 // system include files
22 #include <memory>
23 #include <string>
24 #include <typeinfo>
25 #include <vector>
26 
27 // user include files
31 
32 // forward declarations
33 namespace edm {
34  class WrapperBase;
35  class ProductRegistry;
36  class ProcessHistory;
37  class BranchDescription;
38  class EDProductGetter;
39  class EventAux;
40  class TriggerResults;
41  class TriggerNames;
43 }
44 
45 namespace fwlite {
46 
47  namespace internal {
48  class MultiProductGetter;
49  }
50 
52 {
53 
54  public:
55 
56  typedef std::map<edm::EventID, Long64_t> sec_file_index_map;
57  typedef std::pair<edm::EventID, edm::EventID> event_id_range;
58  typedef std::map<event_id_range, Long64_t> sec_file_range_index_map;
59 
60  MultiChainEvent(std::vector<std::string> const& iFileNames1,
61  std::vector<std::string> const& iFileNames2,
62  bool useSecFileMapSorted = false);
63  virtual ~MultiChainEvent();
64 
65  const MultiChainEvent& operator++();
66 
68  bool to(Long64_t iIndex);
69 
70  //If lumi is non-zero, Go to event by Run, Lumi, and Event number
71  //If lumi is zero, Go to event by Run and Event number
72  bool to(edm::EventID id);
75 
76  // Go to the very first Event.
77  const MultiChainEvent& toBegin();
78 
79  // ---------- const member functions ---------------------
80  virtual std::string const getBranchNameFor(std::type_info const&,
81  char const*,
82  char const*,
83  char const*) const;
84 
86  virtual bool getByLabel(std::type_info const&, char const*, char const*, char const*, void*) const;
87  //void getByBranchName(std::type_info const&, char const*, void*&) const;
88 
89  bool isValid() const;
90  operator bool() const;
91  bool atEnd() const;
92 
93  Long64_t size() const;
94 
95  virtual edm::EventAuxiliary const& eventAuxiliary() const;
96 
97  std::vector<edm::BranchDescription> const& getBranchDescriptions() const;
98  std::vector<std::string> const& getProcessHistory() const;
99  edm::ProcessHistory const& processHistory() const;
100  TFile* getTFile() const {
101  return event1_->getTFile();
102  }
103  TFile* getTFileSec() const {
104  return event2_->getTFile();
105  }
106 
107  Long64_t eventIndex() const { return event1_->eventIndex(); }
108  Long64_t eventIndexSec() const { return event2_->eventIndex(); }
109 
111  return event1_->getLuminosityBlock();
112  }
113 
114  fwlite::Run const& getRun() {
115  return event1_->getRun();
116  }
117 
118 
119  virtual Long64_t fileIndex() const
120  { return event1_->eventIndex(); }
121  virtual Long64_t secondaryFileIndex() const
122  { return event2_->eventIndex(); }
123 
126 
127  // ---------- static member functions --------------------
128  static void throwProductNotFoundException(std::type_info const&, char const*, char const*, char const*);
129 
130  // return the two chain events
131  ChainEvent const* primary () const { return &*event1_;}
132  ChainEvent const* secondary() const { return &*event2_;}
133 
134  // ---------- member functions ---------------------------
135 
136  edm::WrapperBase const* getByProductID(edm::ProductID const&) const;
137 
138  edm::WrapperBase const* getThinnedProduct(edm::ProductID const& pid, unsigned int& key) const;
139 
141  std::vector<edm::WrapperBase const*>& foundContainers,
142  std::vector<unsigned int>& keys) const;
143 
144  private:
145 
146  MultiChainEvent(Event const&); // stop default
147 
148  const MultiChainEvent& operator= (Event const&); // stop default
149 
151  bool toSec(Long64_t iIndex);
152 
153  //Go to event from secondary files by Run, Lumi (if non-zero), and Event number
154  bool toSec(const edm::EventID &id);
157 
158 
159  // ---------- member data --------------------------------
160 
161  std::shared_ptr<ChainEvent> event1_; // primary files
162  std::shared_ptr<ChainEvent> event2_; // secondary files
163  std::shared_ptr<internal::MultiProductGetter> getter_;
164 
165  // speed up secondary file access with a (run range)_1 ---> index_2 map,
166  // when the files are sorted by run,event within the file.
167  // in this case, it is sufficient to store only a run-range to index mapping.
168  // with this, the solution becomes more performant.
171 };
172 
173 }
174 #endif /*__CINT__ */
175 #endif
TFile * getTFileSec() const
std::vector< edm::BranchDescription > const & getBranchDescriptions() const
Long64_t eventIndexSec() const
tuple lumi
Definition: fjr2json.py:35
ChainEvent const * secondary() const
unsigned long long EventNumber_t
const MultiChainEvent & operator++()
fwlite::Run const & getRun()
ChainEvent const * primary() const
unsigned int LuminosityBlockNumber_t
bool to(Long64_t iIndex)
Go to the event at index iIndex.
virtual Long64_t secondaryFileIndex() const
const MultiChainEvent & toBegin()
Long64_t size() const
tuple TriggerResults
Definition: old-fu_pass.py:28
bool toSec(Long64_t iIndex)
Go to the event from secondary files at index iIndex.
edm::WrapperBase const * getByProductID(edm::ProductID const &) const
edm::WrapperBase const * getThinnedProduct(edm::ProductID const &pid, unsigned int &key) const
virtual edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const
std::shared_ptr< internal::MultiProductGetter > getter_
edm::ProcessHistory const & processHistory() const
std::map< edm::EventID, Long64_t > sec_file_index_map
std::vector< std::string > const & getProcessHistory() const
virtual Long64_t fileIndex() const
static void throwProductNotFoundException(std::type_info const &, char const *, char const *, char const *)
static std::string const triggerResults
Definition: EdmProvDump.cc:41
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
std::map< event_id_range, Long64_t > sec_file_range_index_map
sec_file_range_index_map secFileMapSorted_
virtual std::string const getBranchNameFor(std::type_info const &, char const *, char const *, char const *) const
void getThinnedProducts(edm::ProductID const &pid, std::vector< edm::WrapperBase const * > &foundContainers, std::vector< unsigned int > &keys) const
virtual edm::EventAuxiliary const & eventAuxiliary() const
tuple pid
Definition: sysUtil.py:22
MultiChainEvent(std::vector< std::string > const &iFileNames1, std::vector< std::string > const &iFileNames2, bool useSecFileMapSorted=false)
std::pair< edm::EventID, edm::EventID > event_id_range
virtual edm::TriggerResultsByName triggerResultsByName(std::string const &process) const
const MultiChainEvent & operator=(Event const &)
list key
Definition: combine.py:13
std::shared_ptr< ChainEvent > event2_
unsigned int RunNumber_t
TFile * getTFile() const
Long64_t eventIndex() const
tuple process
Definition: LaserDQM_cfg.py:3
fwlite::LuminosityBlock const & getLuminosityBlock()
virtual bool getByLabel(std::type_info const &, char const *, char const *, char const *, void *) const
std::shared_ptr< ChainEvent > event1_