CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
FWLiteJobMetadataManager Class Reference

#include <FWLiteJobMetadataManager.h>

Inheritance diagram for FWLiteJobMetadataManager:
FWJobMetadataManager

Public Member Functions

virtual bool doUpdate (FWJobMetadataUpdateRequest *request)
 
 FWLiteJobMetadataManager (void)
 
- Public Member Functions inherited from FWJobMetadataManager
 FWJobMetadataManager ()
 
void initReps (const FWTypeToRepresentations &iTypeAndReps)
 
std::vector< std::string > & processNamesInJob ()
 
void update (FWJobMetadataUpdateRequest *request)
 
std::vector< Data > & usableData ()
 
virtual ~FWJobMetadataManager ()
 

Private Attributes

const fwlite::Eventm_event
 

Additional Inherited Members

- Public Attributes inherited from FWJobMetadataManager
sigc::signal< void > metadataChanged_
 
- Protected Attributes inherited from FWJobMetadataManager
std::vector< Datam_metadata
 
std::vector< std::string > m_processNamesInJob
 
FWTypeToRepresentationsm_typeAndReps
 

Detailed Description

Definition at line 13 of file FWLiteJobMetadataManager.h.

Constructor & Destructor Documentation

FWLiteJobMetadataManager::FWLiteJobMetadataManager ( void  )

Definition at line 12 of file FWLiteJobMetadataManager.cc.

14  m_event(0)
15 {}

Member Function Documentation

bool FWLiteJobMetadataManager::doUpdate ( FWJobMetadataUpdateRequest request)
virtual

This method inspects the currently opened TFile and for each branch containing products for which we can either build a TCollectionProxy or for which we have a specialized accessor, it registers it as a viewable item.

Implements FWJobMetadataManager.

Definition at line 23 of file FWLiteJobMetadataManager.cc.

References edm::BranchDescription::branchName(), FWItemAccessorFactory::classAccessedAsCollection(), filterCSVwithJSON::copy, gather_cfg::cout, debug, FWLiteJobMetadataUpdateRequest::event_, mergeVDriftHistosByStation::file, FWLiteJobMetadataUpdateRequest::file_, edm::BranchDescription::fullClassName(), fwLog, fwlite::Event::getBranchDescriptions(), fwlite::Event::getProcessHistory(), benchmark_cfg::infos, fwlog::kDebug, m_event, FWJobMetadataManager::m_typeAndReps, edm::BranchDescription::moduleLabel(), FWJobMetadataManager::Data::moduleLabel_, edm::BranchDescription::present(), edm::BranchDescription::processName(), FWJobMetadataManager::Data::processName_, FWJobMetadataManager::processNamesInJob(), FWJobMetadataManager::Data::productInstanceLabel_, edm::BranchDescription::productInstanceName(), FWJobMetadataManager::Data::purpose_, FWTypeToRepresentations::representationsForType(), FWJobMetadataManager::Data::type_, and FWJobMetadataManager::usableData().

24 {
25  FWLiteJobMetadataUpdateRequest *liteRequest
26  = dynamic_cast<FWLiteJobMetadataUpdateRequest *>(request);
27  // There is no way we are going to get a non-FWLite updated request for
28  // this class.
29  assert(liteRequest);
30  if (m_event == liteRequest->event_)
31  return false;
32 
33  m_event = liteRequest->event_;
34  const TFile *file = liteRequest->file_;
35 
36  assert(file);
37 
38  usableData().clear();
39 
40  if (!m_event)
41  return true;
42 
43  const std::vector<std::string>& history = m_event->getProcessHistory();
44 
45  // Turns out, in the online system we do sometimes gets files without any
46  // history, this really should be investigated
47  if (history.empty())
48  std::cout << "WARNING: the file '"
49  << file->GetName() << "' contains no processing history"
50  " and therefore should have no accessible data.\n";
51 
52  std::copy(history.rbegin(),history.rend(),
53  std::back_inserter(processNamesInJob()));
54 
55  static const std::string s_blank;
56  const std::vector<edm::BranchDescription>& descriptions =
58 
59  Data d;
60 
61  //I'm not going to modify TFile but I need to see what it is holding
62  TTree* eventsTree = dynamic_cast<TTree*>(const_cast<TFile*>(file)->Get("Events"));
63  assert(eventsTree);
64 
65  std::set<std::string> branchNamesInFile;
66  TIter nextBranch(eventsTree->GetListOfBranches());
67  while(TBranch* branch = static_cast<TBranch*>(nextBranch()))
68  branchNamesInFile.insert(branch->GetName());
69 
70  typedef std::set<std::string> Purposes;
71  Purposes purposes;
72  std::string classType;
73 
74  for(size_t bi = 0, be = descriptions.size(); bi != be; ++bi)
75  {
76  const edm::BranchDescription &desc = descriptions[bi];
77 
78  if (!desc.present()
79  || branchNamesInFile.end() == branchNamesInFile.find(desc.branchName()))
80  continue;
81 
82  const std::vector<FWRepresentationInfo>& infos
84 
85  /*
86  //std::cout <<"try to find match "<<itBranch->fullClassName()<<std::endl;
87  //For each view we need to find the non-sub-part builder whose proximity is smallest and
88  // then register only that purpose
89  //NOTE: for now, we will ignore the view and only look for the closest proximity
90  unsigned int minProx = ~(0U);
91  for (size_t ii = 0, ei = infos.size(); ii != ei; ++ii) {
92  if (!infos[ii].representsSubPart() && minProx > infos[ii].proximity()) {
93  minProx = infos[ii].proximity();
94  }
95  }
96  */
97 
98  //the infos list can contain multiple items with the same purpose so we will just find
99  // the unique ones
100  purposes.clear();
101  for (size_t ii = 0, ei = infos.size(); ii != ei; ++ii) {
102  /* if(!infos[ii].representsSubPart() && minProx != infos[ii].proximity()) {
103  continue;
104  } */
105  // AMT: this is a simple workaround to hide FF proxybuilder
106  // the proper solution is implemented in CMSSW_7_0_X
107  if (infos[ii].purpose() != "TracksFF")
108  purposes.insert(infos[ii].purpose());
109  }
110 
111  if (purposes.empty())
112  purposes.insert("Table");
113 
114  for (Purposes::const_iterator itPurpose = purposes.begin(),
115  itEnd = purposes.end();
116  itPurpose != itEnd;
117  ++itPurpose)
118  {
119  // Determine whether or not the class can be iterated
120  // either by using a TVirtualCollectionProxy (of the class
121  // itself or on one of its members), or by using a
122  // FWItemAccessor plugin.
123  TClass* theClass = TClass::GetClass(desc.fullClassName().c_str());
124 
125  if (!theClass)
126  continue;
127 
128  if (!theClass->GetTypeInfo())
129  continue;
130 
131  const static bool debug = false;
132  // This is pretty much the same thing that happens
134  {
135  if (debug) {
136  fwLog(fwlog::kDebug) << theClass->GetName()
137  << " will not be displayed in table." << std::endl;
138  }
139  continue;
140  }
141  d.type_ = desc.fullClassName();
142  d.purpose_ = *itPurpose;
143  d.moduleLabel_ = desc.moduleLabel();
144  d.productInstanceLabel_ = desc.productInstanceName();
145  d.processName_ = desc.processName();
146  usableData().push_back(d);
147  if (debug)
148  {
149  fwLog(fwlog::kDebug) << "Add collection will display " << d.type_
150  << " " << d.moduleLabel_
151  << " " << d.productInstanceLabel_
152  << " " << d.processName_ << std::endl;
153  }
154  }
155  }
156  return true;
157 }
static bool classAccessedAsCollection(const TClass *)
std::string & branchName() const
const std::vector< FWRepresentationInfo > & representationsForType(const std::string &iTypeName) const
std::vector< std::string > & processNamesInJob()
std::string const & processName() const
std::string const & moduleLabel() const
std::string const & productInstanceName() const
std::vector< Data > & usableData()
std::vector< edm::BranchDescription > const & getBranchDescriptions() const
Definition: Event.h:140
std::vector< std::string > const & getProcessHistory() const
Definition: Event.cc:255
std::string const & fullClassName() const
#define fwLog(_level_)
Definition: fwLog.h:51
FWTypeToRepresentations * m_typeAndReps
tuple cout
Definition: gather_cfg.py:121
#define debug
Definition: MEtoEDMFormat.h:34

Member Data Documentation

const fwlite::Event* FWLiteJobMetadataManager::m_event
private

Definition at line 19 of file FWLiteJobMetadataManager.h.

Referenced by doUpdate().