ATLAS Offline Software
Loading...
Searching...
No Matches
TreeBranchHelpers.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5//
6// includes
7//
8
10
11// EDM include(s):
19
20// ROOT include(s):
21#include <TClass.h>
22#include <TTree.h>
23#include <TBranch.h>
24#include <TVirtualCollectionProxy.h>
25#include "Math/Vector4D.h"
26
27using ROOT::Math::PtEtaPhiEVector;
28using ROOT::Math::PtEtaPhiMVector;
29using ROOT::Math::PxPyPzEVector;
30using ROOT::Math::PxPyPzMVector;
31
32
33// System include(s):
34#include <regex>
35#include <algorithm>
36#include <functional>
37#include <sstream>
38
39//
40// method implementations
41//
42
43namespace {
44
45
46class TempInterface
47 : public SG::AuxVectorData
48{
49public:
50 TempInterface (size_t size) : m_size (size) {}
51 TempInterface (size_t size, SG::auxid_t auxid, void* ptr) :
52 m_size (size)
53 {
54 setCache (auxid, ptr);
55 }
56
57 using AuxVectorData::setStore;
58
59 virtual size_t size_v() const { return m_size; }
60 virtual size_t capacity_v() const { return m_size; }
61
62private:
63 size_t m_size;
64};
65
66
67} // anonymous namespace
68
69
70namespace {
71
72#ifdef XAOD_STANDALONE
73
86 const SG::AuxVectorBase* getVector( const std::string& key,
87 asg::SgEvent& evtStore,
88 bool allowMissing,
89 const TClass*& cl,
90 MsgStream& msg ) {
91 if( allowMissing &&
92 ( ! evtStore.contains< const SG::AuxVectorBase >( key ) ) ) {
93 return nullptr;
94 }
95 const SG::AuxVectorBase* c = nullptr;
96 if( ! evtStore.retrieve( c, key ).isSuccess() ) {
97 msg << MSG::ERROR << "Couldn't retrieve container with key \"" << key
98 << "\"" << endmsg;
99 return nullptr;
100 }
101 const xAOD::THolder* holder = evtStore.tds()->holder( key );
102 if( holder != nullptr ) {
103 // If the object is in the transient store, get the type of it from
104 // the transient store itself. So that ConstDataVector types would be
105 // handled correctly.
106 const std::type_info* ti = holder->getTypeInfo();
107 cl = TClass::GetClass( *ti );
108 } else {
109 // If the object is not in the transient store, let's just use its
110 // "actual type".
111 cl = TClass::GetClass( typeid( *c ) );
112 }
113 if( ( allowMissing == false ) && ( cl == nullptr ) ) {
114 msg << MSG::ERROR
115 << "Couldn't find TClass dictionary for container \"" << key
116 << "\"" << endmsg;
117 return nullptr;
118 }
119
120 // Return the vector object.
121 return c;
122 }
123
135 const SG::AuxElement* getElement( const std::string& key,
136 asg::SgEvent& evtStore,
137 bool allowMissing,
138 MsgStream& msg ) {
139 if( allowMissing &&
140 ( ! evtStore.contains< const SG::AuxElement >( key ) ) ) {
141 return nullptr;
142 }
143 const SG::AuxElement* e = nullptr;
144 if( ! evtStore.retrieve( e, key ).isSuccess() ) {
145 msg << MSG::ERROR << "Couldn't retrieve object with key \"" << key
146 << "\"" << endmsg;
147 return nullptr;
148 }
149 return e;
150 }
151
152#else
153
155 class ProxyWithName {
156 public:
158 typedef const SG::DataProxy* argument_type;
160 ProxyWithName( const std::string& name ) : m_name( name ) {}
162 bool operator()( argument_type proxy ) const {
163 return ( proxy->name() == m_name );
164 }
165 private:
166 std::string m_name;
167 }; // class ProxyWithName
168
181 const SG::AuxVectorBase* getVector ATLAS_NOT_CONST_THREAD_SAFE ( const std::string& key,
182 IProxyDict& evtStore,
183 bool allowMissing,
184 const TClass*& cl,
185 MsgStream& msg ) {
186
187 // Find all proxies with this key:
188 auto proxies = evtStore.proxies();
189 proxies.erase( std::remove_if( proxies.begin(), proxies.end(),
190 std::not_fn( ProxyWithName( key ) ) ),
191 proxies.end() );
192 // Now iterate over them:
193 for( const SG::DataProxy* proxy : proxies ) {
194 // We need a non-const version of it... :-(
195 SG::DataProxy* proxy_nc = const_cast< SG::DataProxy* >( proxy );
196 // Try to get the right object out of it.
197 DataBucketBase* bucket =
198 dynamic_cast< DataBucketBase* >( proxy_nc->accessData() );
199 if( ! bucket ) {
200 // This is a big problem in the job. Return right away.
201 msg << MSG::ERROR
202 << "Couldn't access data object as a data bucket?!?" << endmsg;
203 return nullptr;
204 }
205 // Get the dictionary for the type:
206 cl = TClass::GetClass( bucket->tinfo() );
207 if( ! cl ) {
208 if( msg.level() <= MSG::VERBOSE ) {
209 msg << MSG::VERBOSE << "No dictionary found for: "
210 << bucket->tinfo().name() << endmsg;
211 }
212 continue;
213 }
214 // Check whether the object inherits from AuxVectorBase:
215 if( ! cl->InheritsFrom( "SG::AuxVectorBase" ) ) {
216 if( msg.level() <= MSG::VERBOSE ) {
217 msg << MSG::VERBOSE << "Object \"" << key << "/" << cl->GetName()
218 << "\" does not inherit from SG::AuxVectorBase" << endmsg;
219 }
220 continue;
221 }
222 // If all is well, just assume that the inheritance is direct/simple:
224 reinterpret_cast< const SG::AuxVectorBase* >( bucket->object() );
225 return result;
226 }
227
228 // Apparently we failed...
229 if( ! allowMissing ) {
230 msg << MSG::ERROR << "Couldn't retrieve object \"" << key
231 << "\" as SG::AuxVectorBase" << endmsg;
232 }
233 return nullptr;
234 }
235
247 const SG::AuxElement* getElement ATLAS_NOT_CONST_THREAD_SAFE ( const std::string& key,
248 StoreGateSvc& evtStore,
249 bool allowMissing,
250 MsgStream& msg ) {
251
252
253 const SG::AuxElement* e = nullptr;
254 if( !evtStore.retrieve( e, key ).isSuccess() ) {
255 if(!allowMissing) {
256 msg << MSG::ERROR << "Couldn't retrieve object with key \"" << key
257 << "\"" << endmsg;
258 }
259 return nullptr;
260 }
261 return e;
262
263 }
264#endif // XAOD_STANDALONE
265
274 char rootType( char typeidType, MsgStream& msg ) {
275
276 // Do the hard-coded translation:
277 switch( typeidType ) {
278
279 case 'c':
280 return 'B';
281 break;
282 case 'h':
283 return 'b';
284 break;
285 case 's':
286 return 'S';
287 break;
288 case 't':
289 return 's';
290 break;
291 case 'i':
292 return 'I';
293 break;
294 case 'j':
295 return 'i';
296 break;
297 case 'f':
298 return 'F';
299 break;
300 case 'd':
301 return 'D';
302 break;
303 case 'x':
304 return 'L';
305 break;
306 case 'y':
307 case 'm': // Not sure how platform-independent this one is...
308 return 'l';
309 break;
310 case 'b':
311 return 'O';
312 break;
313 default:
314 // If we didn't find this type:
315 msg << MSG::ERROR << "Received an unknown type: " << typeidType
316 << endmsg;
317 return '\0';
318 break;
319 }
320 }
321} // private namespace
322
323namespace CP
324{
325 namespace TreeBranchHelpers
326 {
327 StatusCode BranchConfig ::
328 parse (const std::string& branchDecl, MsgStream& msg)
329 {
330 // The regular expression used to extract the needed info. The logic
331 // is supposed to be:
332 //
333 // (match[1]).(match[2])<any whitespace>-><any whitespace>(match[3])[<any whitespace>type=(match[5])][<any whitespace>metTerm=(match[7])][<any whitespace>basketSize=(match[9])]
334 //
335 // Like:
336 // "Electrons.eta -> el_eta"
337 // "Electrons.eta -> el_eta type=float"
338 // "MissingET.px -> met_px metTerm=Final"
339 static const std::regex
340 re( "\\s*([\\w%]+)\\.([\\w%]+)\\s*->\\s*([\\w%]+)(\\s+type=([\\w%]+))?(\\s+metTerm=([\\w%]+))?(\\s+basketSize=([\\w%]+))?" );
341
342 // Interpret this branch declaration.
343 std::smatch match;
344 if( ! std::regex_match( branchDecl, match, re ) ) {
345 msg << MSG::ERROR << "Expression \"" << branchDecl << "\" doesn't match \"<object>.<variable> -> <branch>\"" << endmsg;
346 return StatusCode::FAILURE;
347 }
348 this->branchDecl = branchDecl;
349 sgName = match[ 1 ];
350 auxName = match[ 2 ];
351 branchName = match[ 3 ];
352 typeName = match[ 5 ];
353 metTermName = match[ 7 ];
354 if (match[9].matched) {
355 try {
356 basketSize = std::stoi(match[9]);
357 } catch (const std::exception& ) {
358 msg << MSG::ERROR << "Could not parse basket size value: " << match[9] << endmsg;
359 return StatusCode::FAILURE;
360 }
361 }
362 return StatusCode::SUCCESS;
363 }
364
365
366
367 StatusCode BranchConfig ::
368 configureTypes (std::set<std::string>& decosWithoutType, MsgStream& msg)
369 {
370 std::string nominalAuxName = auxName;
371 if (auto pos = nominalAuxName.find ("%SYS%"); pos != std::string::npos)
372 nominalAuxName.replace (pos, 5, "NOSYS");
373 if (!typeName.empty())
374 {
375 if (typeName == "char")
376 SG::ConstAccessor<char> {nominalAuxName};
377 else if (typeName == "float")
378 SG::ConstAccessor<float> {nominalAuxName};
379 else if (typeName == "double")
380 SG::ConstAccessor<double> {nominalAuxName};
381 else if (typeName == "int")
382 SG::ConstAccessor<int> {nominalAuxName};
383 else if (typeName == "unsigned" || typeName == "unsigned_int")
384 SG::ConstAccessor<unsigned> {nominalAuxName};
385 else if (typeName == "unsigned_char")
386 SG::ConstAccessor<unsigned char> {nominalAuxName};
387 else if (typeName == "unsigned_long")
388 SG::ConstAccessor<unsigned long> {nominalAuxName};
389 else if (typeName == "unsigned_long_long")
391 else if (typeName == "int8")
392 SG::ConstAccessor<std::int8_t> {nominalAuxName};
393 else if (typeName == "int16")
394 SG::ConstAccessor<std::int16_t> {nominalAuxName};
395 else if (typeName == "int32")
396 SG::ConstAccessor<std::int32_t> {nominalAuxName};
397 else if (typeName == "int64")
398 SG::ConstAccessor<std::int64_t> {nominalAuxName};
399 else if (typeName == "uint8")
400 SG::ConstAccessor<std::uint8_t> {nominalAuxName};
401 else if (typeName == "uint16")
402 SG::ConstAccessor<std::uint16_t> {nominalAuxName};
403 else if (typeName == "uint32")
404 SG::ConstAccessor<std::uint32_t> {nominalAuxName};
405 else if (typeName == "uint64")
406 SG::ConstAccessor<std::uint64_t> {nominalAuxName};
407 else if (typeName == "vector_float")
408 SG::ConstAccessor<std::vector<float>> {nominalAuxName};
409 else if (typeName == "vector_int")
410 SG::ConstAccessor<std::vector<int>> {nominalAuxName};
411 else if (typeName == "vector_string")
413 else if (typeName == "vector_vector_float")
415 else if (typeName == "vector_vector_int")
417 else if (typeName == "PtEtaPhiEVector")
418 SG::ConstAccessor<PtEtaPhiEVector> {nominalAuxName};
419 else if (typeName == "PtEtaPhiMVector")
420 SG::ConstAccessor<PtEtaPhiMVector> {nominalAuxName};
421 else if (typeName == "PxPyPzEVector")
422 SG::ConstAccessor<PxPyPzEVector> {nominalAuxName};
423 else if (typeName == "PxPyPzMVector")
424 SG::ConstAccessor<PxPyPzMVector> {nominalAuxName};
425 else if (typeName == "vector_PtEtaPhiEVector")
427 else if (typeName == "vector_PtEtaPhiMVector")
429 else if (typeName == "vector_PxPyPzEVector")
431 else if (typeName == "vector_PxPyPzMVector")
433 else if (typeName == "vector_vector_PtEtaPhiEVector")
435 else if (typeName == "vector_vector_PtEtaPhiMVector")
437 else if (typeName == "vector_vector_PxPyPzEVector")
439 else if (typeName == "vector_vector_PxPyPzMVector")
441 else
442 {
443 unsigned line = __LINE__ - 2;
444 std::string file = __FILE__;
445 file = file.substr (file.find_last_of("/\\") + 1);
446 msg << MSG::ERROR << "Unknown type requested, please extend " << file << " near line " << line << " for type " << typeName << endmsg;
447 return StatusCode::FAILURE;
448 }
449 }
452 {
453 nominalAuxId = reg.findAuxID (nominalAuxName);
455 {
456 decosWithoutType.insert (nominalAuxName);
457 msg << MSG::DEBUG << "No aux ID found for auxiliary variable: " << nominalAuxName << endmsg;
458 // just returning SUCCESS here, our caller will report failure
459 return StatusCode::SUCCESS;
460 }
461 }
462 if (auxType == nullptr)
463 {
464 auxType = reg.getType (nominalAuxId);
465 if (auxType == nullptr)
466 {
467 msg << MSG::ERROR
468 << "No std::type_info available for aux-store variable: "
469 << nominalAuxName << endmsg;
470 return StatusCode::FAILURE;
471 }
472 }
473 if (auxVecType == nullptr)
474 {
475 auxVecType = reg.getVecType (nominalAuxId);
476 if (auxVecType == nullptr)
477 {
478 msg << MSG::ERROR
479 << "No std::type_info available for aux-store variable: "
480 << nominalAuxName << endmsg;
481 return StatusCode::FAILURE;
482 }
483 }
484 if (auxFactory == nullptr)
485 {
486 auxFactory = reg.getFactory (nominalAuxId);
487 if (auxFactory == nullptr)
488 {
489 msg << MSG::ERROR
490 << "No factory found for auxiliary variable: "
491 << nominalAuxName << endmsg;
492 return StatusCode::FAILURE;
493 }
494 }
495 return StatusCode::SUCCESS;
496 }
497
498
499
500 StatusCode BranchConfig ::
501 configureSystematics (ISystematicsSvc& sysSvc, MsgStream& msg)
502 {
503 if (sgName.find ("%SYS%") == std::string::npos &&
504 auxName.find ("%SYS%") == std::string::npos &&
505 branchName.find ("%SYS%") == std::string::npos)
506 {
507 nominalOnly = true;
508 }
509 if (!nominalOnly)
510 {
511 if (branchName.find ("%SYS%") == std::string::npos)
512 {
513 msg << MSG::ERROR << "Branch with systematics without %SYS% in branch name: "
514 << branchName << endmsg;
515 return StatusCode::FAILURE;
516 }
517 if (sgName.find ("%SYS%") == std::string::npos &&
518 auxName.find ("%SYS%") == std::string::npos)
519 {
520 msg << MSG::ERROR << "Branch with systematics without %SYS% in SG or aux name: "
521 << sgName << "." << auxName << endmsg;
522 return StatusCode::FAILURE;
523 }
524 if (auxName.find ("NOSYS") != std::string::npos)
525 {
526 msg << MSG::ERROR << "Branch with systematics with NOSYS in aux name: "
527 << sgName << "." << auxName << endmsg;
528 return StatusCode::FAILURE;
529 }
530 if (sgName.find ("NOSYS") != std::string::npos && auxName.find ("%SYS%") == std::string::npos)
531 {
532 msg << MSG::ERROR << "Branch with NOSYS in SG name but without %SYS% in aux name: "
533 << sgName << "." << auxName << endmsg;
534 return StatusCode::FAILURE;
535 }
536
537 if (sgName.find ("%SYS%") != std::string::npos)
539
540 if (auxName.find ("%SYS%") != std::string::npos)
541 {
542 if (auto pos = sgName.find ("NOSYS"); pos == std::string::npos)
544 else
545 {
546 // Sometimes while object systematics were applied we are not interested in them,
547 // NOSYS will then be used on the container name.
548 // Decoration systematics however will only be aware of containers with %SYS% included.
549 // Some special handling is needed to translate from NOSYS back to %SYS%.
550 std::string sgNameSys = sgName;
551 sgNameSys.replace (pos, 5, "%SYS%");
552
553 // these will be the object systematics
554 auto objectSys = sysSvc.getObjectSystematics (sgNameSys);
555
556 // these will be all systematics (object+decor)
557 auto allSys = sysSvc.getDecorSystematics (sgNameSys, auxName);
558
559 // we now need to filter-out object systematics
560 for (auto& variation : allSys)
561 {
562 if (objectSys.find (variation) == objectSys.end())
563 auxNameFilterSys.insert (variation);
564 }
565 }
566 }
567
570 if (branchNameFilterSys.empty())
571 nominalOnly = true;
572 }
573
574 return StatusCode::SUCCESS;
575 }
576
577
578
579 StatusCode OutputBranchData ::
580 configureNames (const BranchConfig& branchConfig, const CP::SystematicSet& sys, ISystematicsSvc& sysSvc, MsgStream& msg)
581 {
582 isNominal = true;
583
584 if (branchConfig.sgName.find ("%SYS%") != std::string::npos)
585 {
586 CP::SystematicSet matching;
587 if (SystematicSet::filterForAffectingSystematics (sys, branchConfig.sgNameFilterSys, matching).isFailure())
588 return StatusCode::FAILURE;
589 if (sysSvc.makeSystematicsName (sgName, branchConfig.sgName, matching).isFailure())
590 return StatusCode::FAILURE;
591 if (!matching.empty())
592 isNominal = false;
593 } else
594 sgName = branchConfig.sgName;
595
596 if (branchConfig.auxName.find ("%SYS%") != std::string::npos)
597 {
598 CP::SystematicSet matching;
599 if (SystematicSet::filterForAffectingSystematics (sys, branchConfig.auxNameFilterSys, matching).isFailure())
600 return StatusCode::FAILURE;
601 if (sysSvc.makeSystematicsName (auxName, branchConfig.auxName, matching).isFailure())
602 return StatusCode::FAILURE;
603 if (!matching.empty())
604 isNominal = false;
605 } else
606 auxName = branchConfig.auxName;
607
608 if (branchConfig.branchName.find ("%SYS%") != std::string::npos)
609 {
610 CP::SystematicSet matching;
611 if (SystematicSet::filterForAffectingSystematics (sys, branchConfig.branchNameFilterSys, matching).isFailure())
612 return StatusCode::FAILURE;
613 if (sysSvc.makeSystematicsName (branchName, branchConfig.branchName, matching).isFailure())
614 return StatusCode::FAILURE;
615 if (matching.empty() && !isNominal)
616 {
617 msg << MSG::FATAL << "Branch \"" << branchName << "\" is not affected by any of the requested systematics but is not nominal." << endmsg;
618 return StatusCode::FAILURE;
619 }
620 } else
621 {
622 branchName = branchConfig.branchName;
623 if (!sys.empty())
624 {
625 msg << MSG::FATAL << "Branch \"" << branchName << "\" without systematics is evaluated in a non-nominal context." << endmsg;
626 return StatusCode::FAILURE;
627 }
628 }
629
630 return StatusCode::SUCCESS;
631 }
632
633
634
635 StatusCode
637 setup( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData, MsgStream& msg ) {
638
639 // Remember the branch name.
640 m_branchName = outputData.branchName;
641
642 // Create the accessor.
643 m_acc.reset( new SG::TypelessConstAccessor( *branchConfig.auxType, outputData.auxName ) );
644
645 // Get a pointer to the vector factory.
646 m_factory = branchConfig.auxFactory;
647
648 // Create the data object.
649 m_data = m_factory->create( m_acc->auxid(), 1, 1, false );
650
651 // Pointer to the branch, to be created.
652 TBranch* br = nullptr;
653
654 // Decide whether we're dealing with a "primitive" or an "object" branch.
655 if( strlen( branchConfig.auxType->name() ) == 1 ) {
656
657 // This is a "primitive" variable...
658
659 // Get the type identifier for it that ROOT will understand.
660 const char rType = rootType( branchConfig.auxType->name()[ 0 ], msg );
661 if( rType == '\0' ) {
662 msg << MSG::ERROR << "Type not recognised for variable: "
663 << outputData.branchName << endmsg;
664 return StatusCode::FAILURE;
665 }
666
667 // Construct the type description.
668 std::ostringstream typeDesc;
669 typeDesc << outputData.branchName << "/" << rType;
670
671 // Create the primitive branch.
672 br = tree.Branch( outputData.branchName.c_str(), m_data->toPtr(),
673 typeDesc.str().c_str() );
674 if (branchConfig.basketSize.has_value())
675 br->SetBasketSize(branchConfig.basketSize.value());
676
677 } else {
678
679 // This is an "object" variable...
680
681 // Get a proper type name for the variable.
682 const std::string typeName = SG::normalizedTypeinfoName( *branchConfig.auxType );
683
684 // Access the dictionary for the type.
685 TClass* cl = TClass::GetClass( *branchConfig.auxType );
686 if( ! cl ) {
687 cl = TClass::GetClass( typeName.c_str() );
688 }
689 if( ! cl ) {
690 msg << MSG::ERROR << "Couldn't find dictionary for type: "
691 << typeName << endmsg;
692 return StatusCode::FAILURE;
693 }
694 if( ! cl->GetStreamerInfo() ) {
695 msg << MSG::ERROR << "No streamer info available for type: "
696 << cl->GetName() << endmsg;
697 return StatusCode::FAILURE;
698 }
699
700 // Create the object branch.
701 m_dataPtr = m_data->toPtr();
702 br = tree.Branch( outputData.branchName.c_str(), cl->GetName(), &m_dataPtr );
703 if (branchConfig.basketSize.has_value())
704 br->SetBasketSize(branchConfig.basketSize.value());
705
706 }
707
708 // Check that the branch creation succeeded.
709 if( ! br ) {
710 msg << MSG::ERROR << "Failed to create branch: " << outputData.branchName
711 << endmsg;
712 return StatusCode::FAILURE;
713 }
714
715 // Return gracefully.
716 return StatusCode::SUCCESS;
717 }
718
719 StatusCode
721 process( const SG::AuxElement& element, MsgStream& msg ) {
722
723 // A security check.
724 if( ( ! m_acc ) || ( ! m_factory ) || ( ! m_data ) ) {
725 msg << MSG::FATAL << "Internal logic error detected" << endmsg;
726 return StatusCode::FAILURE;
727 }
728
729 // Get the data out of the xAOD object.
730 //const void* auxData = ( *m_acc )( element );
731
732 // Copy it into the output variable.
733 TempInterface dstiface (m_data->size(), m_acc->auxid(), m_data->toPtr());
734 m_factory->copy( m_acc->auxid(), dstiface, 0,
735 *element.container(), element.index(), 1 );
736
737 // Return gracefully.
738 return StatusCode::SUCCESS;
739 }
740
742 setup ( ROOT::RNTupleModel& /* model */, const BranchConfig& /* branchConfig */, OutputBranchData& /* outputData */, MsgStream& msg ) {
743 msg << MSG::ERROR << "ElementBranchProcessor::setup for RNTuple should not be called" << endmsg;
744 return StatusCode::FAILURE;
745 }
746
748 setup( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData, MsgStream& msg ) {
749
750 // Remember the branch name.
751 m_branchName = outputData.branchName;
752
753 // Create the accessor.
754 m_acc.reset( new SG::TypelessConstAccessor( *branchConfig.auxType, outputData.auxName ) );
755
756 // Get a pointer to the vector factory.
757 m_factory = branchConfig.auxFactory;
758
759 // Create the data object.
760 m_data = m_factory->create( m_acc->auxid(), 0, 0, false );
761
762 // Get a proper type name for the variable.
763 const std::string typeName = SG::normalizedTypeinfoName( *branchConfig.auxVecType );
764
765 // Access the dictionary for the type.
766 TClass* cl = TClass::GetClass( *branchConfig.auxVecType );
767 if( ! cl ) {
768 cl = TClass::GetClass( typeName.c_str() );
769 }
770 if( ! cl ) {
771 msg << MSG::ERROR << "Couldn't find dictionary for type: "
772 << typeName << endmsg;
773 return StatusCode::FAILURE;
774 }
775 if( ! cl->GetStreamerInfo() ) {
776 msg << MSG::ERROR << "No streamer info available for type: "
777 << cl->GetName() << endmsg;
778 return StatusCode::FAILURE;
779 }
780
781 // Create the branch.
782 m_dataPtr = m_data->toVector();
783 TBranch* br = tree.Branch( outputData.branchName.c_str(), cl->GetName(),
784 &m_dataPtr );
785 if( ! br ) {
786 msg << MSG::ERROR << "Failed to create branch: " << outputData.branchName
787 << endmsg;
788 return StatusCode::FAILURE;
789 }
790 if (branchConfig.basketSize.has_value())
791 br->SetBasketSize(branchConfig.basketSize.value());
792
793 // Return gracefully.
794 return StatusCode::SUCCESS;
795 }
796
798 resize( size_t size, MsgStream& msg ) {
799
800 // A security check.
801 if( ! m_data ) {
802 msg << MSG::FATAL << "Internal logic error detected" << endmsg;
803 return StatusCode::FAILURE;
804 }
805
806 // Do the deed.
807 m_data->resize( 0 );
808 m_data->resize( size );
809
810 // Return gracefully.
811 return StatusCode::SUCCESS;
812 }
813
815 process( const SG::AuxElement& element, size_t index, MsgStream& msg ) {
816
817 // A security check.
818 if( ( ! m_acc ) || ( ! m_factory ) || ( ! m_data ) ) {
819 msg << MSG::FATAL << "Internal logic error detected" << endmsg;
820 return StatusCode::FAILURE;
821 }
822
823 // Get the data out of the xAOD object.
824 //const void* auxData = ( *m_acc )( element );
825
826 // Copy it into the output variable.
827 TempInterface dstiface (m_data->size(), m_acc->auxid(), m_data->toPtr());
828 m_factory->copy( m_acc->auxid(), dstiface, index,
829 *element.container(), element.index(), 1 );
830
831 // Return gracefully.
832 return StatusCode::SUCCESS;
833 }
834
836 setup ( ROOT::RNTupleModel& /* model */, const BranchConfig& /* branchConfig */, OutputBranchData& /* outputData */, MsgStream& msg ) {
837 msg << MSG::ERROR << "ContainerBranchProcessor::setup for RNTuple should not be called" << endmsg;
838 return StatusCode::FAILURE;
839 }
840
841
842
844 : asg::AsgMessaging( ("CP::TreeBranchHelpers::ElementProcessorRegular/" + sgName).c_str() ),
845 m_sgName(sgName) {
846
847 }
848
850 retrieveProcess( StoreType& evtStore ) {
851
852 // Retrieve the object:
853 static const bool ALLOW_MISSING = false;
854 const SG::AuxElement* el = getElement( m_sgName,
855 evtStore,
856 ALLOW_MISSING, msg() );
857 if( ! el ) {
858 ATH_MSG_ERROR( "Failed to retrieve object \"" << m_sgName
859 << "\"" );
860 return StatusCode::FAILURE;
861 }
862 const SG::AuxElement& element = *el;
863
864 // Process all branches.
865 for( auto& p : m_branches ) {
866 ATH_CHECK( p->process( element, msg() ) );
867 }
868
869 // Return gracefully.
870 return StatusCode::SUCCESS;
871 }
872
874 addBranch( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData ) {
875
876 // Set up the new branch.
877 m_branches.emplace_back(std::make_unique<ElementBranchProcessor>());
878 ATH_CHECK( m_branches.back()->setup( tree, branchConfig, outputData, msg() ) );
879
880 // Return gracefully.
881 return StatusCode::SUCCESS;
882 }
883
885 addBranch( ROOT::RNTupleModel& /* model */, const BranchConfig& /* branchConfig */, OutputBranchData& /* outputData */ ) {
886 ATH_MSG_ERROR("ElementProcessorRegular::addBranch for RNTuple should not be called");
887 return StatusCode::FAILURE;
888 }
889
891 : asg::AsgMessaging( ("CP::TreeBranchHelpers::ContainerProcessorRegular/" + sgName).c_str() ),
892 m_sgName(sgName) {
893
894 }
895
897 retrieveProcess( StoreType& evtStore ) {
898
899 // Retrieve the container:
900 static const bool ALLOW_MISSING = false;
901 const TClass* cl = nullptr;
902 const SG::AuxVectorBase* vec = getVector( m_sgName,
903 evtStore,
904 ALLOW_MISSING, cl, msg() );
905 if( ! vec ) {
906 ATH_MSG_ERROR( "Failed to retrieve container \""
907 << m_sgName << "\"" );
908 return StatusCode::FAILURE;
909 }
910 const SG::AuxVectorBase& container = *vec;
911
912 // Get the collection proxy for the type if it's not available yet.
913 if( ! m_collProxy ) {
914
915 // Get the collection proxy from the dictionary.
916 m_collProxy = cl->GetCollectionProxy();
917 if( ! m_collProxy ) {
918 ATH_MSG_ERROR( "No collection proxy provided by type: "
919 << cl->GetName() );
920 return StatusCode::FAILURE;
921 }
922
923 // Get the offset that one needs to use to get from the element
924 // pointers to SG::AuxElement pointers.
925 static const TClass* const auxElementClass =
926 TClass::GetClass( typeid( SG::AuxElement ) );
928 m_collProxy->GetValueClass()->GetBaseClassOffset( auxElementClass );
929 if( m_auxElementOffset < 0 ) {
930 ATH_MSG_ERROR( "Vector element type \""
931 << m_collProxy->GetValueClass()->GetName()
932 << "\" doesn't seem to inherit from \""
933 << auxElementClass->GetName() << "\"" );
934 return StatusCode::FAILURE;
935 }
936 }
937
938 // Set up the iteration over the elements of the container. In a really
939 // low level / ugly way...
940 void* cPtr =
941 const_cast< void* >( static_cast< const void* >( &container ) );
942 TVirtualCollectionProxy::TPushPop helper( m_collProxy, cPtr );
943 const UInt_t cSize = m_collProxy->Size();
944
945 // Tell all branch processors to resize their variables.
946 for( auto& p : m_branches ) {
947 ATH_CHECK( p->resize( cSize, msg() ) );
948 }
949
950 // Now iterate over the container.
951 for( UInt_t i = 0; i < cSize; ++i ) {
952
953 // Get the element.
954 char* elPtr = static_cast< char* >( m_collProxy->At( i ) );
955 if( ! elPtr ) {
956 ATH_MSG_ERROR( "Failed to get element " << i << " from container" );
957 return StatusCode::FAILURE;
958 }
959 const SG::AuxElement* element =
960 reinterpret_cast< const SG::AuxElement* >( elPtr +
962
963 // Execute all branch processors on this element.
964 for( auto& p : m_branches ) {
965 ATH_CHECK( p->process( *element, i, msg() ) );
966 }
967 }
968
969 // Return gracefully.
970 return StatusCode::SUCCESS;
971 }
972
974 addBranch( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData ) {
975
976 // Set up the new branch.
977 m_branches.emplace_back(std::make_unique<ContainerBranchProcessor>());
978 ATH_CHECK( m_branches.back()->setup( tree, branchConfig, outputData, msg() ) );
979
980 // Return gracefully.
981 return StatusCode::SUCCESS;
982 }
983
985 addBranch( ROOT::RNTupleModel& /* model */, const BranchConfig& /* branchConfig */, OutputBranchData& /* outputData */ ) {
986 ATH_MSG_ERROR("ContainerProcessorRegular::addBranch for RNTuple should not be called");
987 return StatusCode::FAILURE;
988 }
989
990 ElementProcessorMet::ElementProcessorMet (const std::string& sgName, const std::string& termName)
991 : asg::AsgMessaging( ("CP::TreeBranchHelpers::ElementProcessorMet/" + sgName).c_str() ),
992 m_sgName(sgName),
993 m_termName(termName) {
994
995 }
996
998 retrieveProcess( StoreType& evtStore ) {
999
1000 const xAOD::MissingETContainer *met = nullptr;
1001 ANA_CHECK (evtStore.retrieve (met, m_sgName));
1002 const SG::AuxElement& element = *(*met)[m_termName];
1003 // Process all branches.
1004 for( auto& p : m_branches ) {
1005 ATH_CHECK( p->process( element, msg() ) );
1006 }
1007
1008 // Return gracefully.
1009 return StatusCode::SUCCESS;
1010 }
1011
1013 addBranch( TTree& tree, const BranchConfig& branchConfig, OutputBranchData& outputData ) {
1014
1015 // Set up the new branch.
1016 m_branches.emplace_back(std::make_unique<ElementBranchProcessor>());
1017 ATH_CHECK( m_branches.back()->setup( tree, branchConfig, outputData, msg() ) );
1018
1019 // Return gracefully.
1020 return StatusCode::SUCCESS;
1021 }
1022
1024 addBranch( ROOT::RNTupleModel& /* model */, const BranchConfig& /* branchConfig */, OutputBranchData& /* outputData */ ) {
1025 ATH_MSG_ERROR("ElementProcessorMet::addBranch for RNTuple should not be called");
1026 return StatusCode::FAILURE;
1027 }
1028
1029
1030
1031 StatusCode ProcessorList ::
1032 setupTree(const std::vector<std::string>& branches, std::unordered_set<std::string> nonContainers, ISystematicsSvc& sysSvc, TTree& tree) {
1033
1034 m_nonContainers = std::move (nonContainers);
1035
1036 std::vector<BranchConfig> branchConfigs;
1037 branchConfigs.reserve( branches.size() );
1038 for ( const std::string& branchDecl : branches ) {
1039 branchConfigs.emplace_back();
1040 ATH_CHECK( branchConfigs.back().parse( branchDecl, msg() ) );
1041 if (!branchConfigs.back().basketSize.has_value())
1042 branchConfigs.back().basketSize = defaultBasketSize;
1043 }
1044
1045 // This will loop over all branches, collect the name of any
1046 // aux-store decorations that have no type and report them at the
1047 // end. This allows to get the full list of missing decorations in
1048 // a single run, as opposed to having to re-run the job once per
1049 // missing decoration.
1050 std::set<std::string> decosWithoutType;
1051 for (auto& branchConfig : branchConfigs) {
1052 ATH_CHECK ( branchConfig.configureTypes (decosWithoutType, msg()) );
1053 }
1054 if (!decosWithoutType.empty()) {
1055 msg() << MSG::ERROR << "The following decorations have no type information:";
1056 for (const auto& deco : decosWithoutType) {
1057 msg() << " " << deco;
1058 }
1059 msg() << endmsg;
1060 return StatusCode::FAILURE;
1061 }
1062
1063
1064 for (auto& branchConfig : branchConfigs) {
1065 ATH_CHECK ( branchConfig.configureSystematics (sysSvc, msg()) );
1066 }
1067
1068 auto sysVector = sysSvc.makeSystematicsVector();
1069 // Ensure that the nominal systematic is first
1070 if (!sysVector.at(0).empty()) {
1071 ATH_MSG_ERROR ("The first systematic in the list is not nominal!");
1072 return StatusCode::FAILURE;
1073 }
1074
1075 // The branches we intend to write out
1076 std::vector<OutputBranchData> outputBranches;
1077
1078 // All the branches that will be created
1079 std::unordered_set<std::string> allBranches;
1080
1081 // Iterate over the branch specifications.
1082 for( const auto& branchConfig : branchConfigs ) {
1083
1084 // All the branches that will be created for this rule
1085 std::unordered_set<std::string> branchesForRule;
1086
1087 // Consider all systematics but skip the nominal one
1088 for( const auto& sys : sysVector ) {
1089
1090 if (branchConfig.nominalOnly && !sys.empty()) continue;
1091 OutputBranchData outputData;
1092 outputData.branchConfig = &branchConfig;
1093 outputData.sysIndex = &sys - &sysVector.front();
1094 ATH_CHECK( outputData.configureNames (branchConfig, sys, sysSvc, msg()) );
1095
1096 // Skip branches that have already been created for other
1097 // systematics for this rule. That's mostly nominal, but for
1098 // systematics correlation studies it can also do other things.
1099 if (branchesForRule.contains(outputData.branchName))
1100 {
1101 ANA_MSG_VERBOSE ("Branch \"" << outputData.branchName << "\" for rule \"" << branchConfig.branchDecl << "\" and systematic \"" << sys.name() << "\" already exists, skipping." );
1102 continue;
1103 }
1104 branchesForRule.insert(outputData.branchName);
1105
1106 // If this branch already exists from another rule, report
1107 // it as an error.
1108 if (allBranches.contains(outputData.branchName))
1109 {
1110 ANA_MSG_ERROR ("Branch \"" << outputData.branchName << "\" would be created twice!" );
1111 return StatusCode::FAILURE;
1112 }
1113 allBranches.insert(outputData.branchName);
1114 outputBranches.push_back(std::move(outputData));
1115 }
1116 }
1117
1118 // Group all branches by systematic index to ensure that when
1119 // reading a single systematic the branches are contiguous on
1120 // disk.
1121 std::stable_sort (outputBranches.begin(), outputBranches.end(),
1122 [](const OutputBranchData& a, const OutputBranchData& b) {
1123 return a.sysIndex < b.sysIndex; });
1124
1125 for (auto &outputData : outputBranches)
1126 ATH_CHECK( setupBranch( *outputData.branchConfig, outputData, tree ) );
1127
1128 // Return gracefully.
1129 return StatusCode::SUCCESS;
1130 }
1131
1132 StatusCode ProcessorList::setupBranch( const BranchConfig& branchConfig, OutputBranchData& outputData, TTree& tree ) {
1133
1134 ATH_CHECK( getObjectProcessor( branchConfig, outputData.sgName ).addBranch( tree,
1135 branchConfig, outputData ) );
1136 ATH_MSG_DEBUG( "Writing branch \"" << outputData.branchName
1137 << "\" from container/variable \"" << outputData.sgName
1138 << "." << outputData.auxName << "\"" );
1139
1140 // Return gracefully.
1141 return StatusCode::SUCCESS;
1142 }
1143
1144 StatusCode ProcessorList ::
1145 process (StoreType& evtStore)
1146 {
1147 // Process the standalone objects:
1148 for( auto& [name, processor] : m_processors )
1149 {
1150 // Process it:
1151 ATH_CHECK (processor->retrieveProcess (evtStore));
1152 }
1153 return StatusCode::SUCCESS;
1154 }
1155
1156
1157
1158 IObjectProcessor& ProcessorList ::
1159 getObjectProcessor( const BranchConfig& branchConfig, const std::string& sgName )
1160 {
1161 std::string processorName = sgName;
1162 if (!branchConfig.metTermName.empty())
1163 processorName += ":metTerm=" + branchConfig.metTermName;
1164
1165 if (auto iter = m_processors.find(processorName); iter != m_processors.end())
1166 return *iter->second;
1167
1168 if (!branchConfig.metTermName.empty())
1169 return *m_processors.emplace (processorName, std::make_unique<ElementProcessorMet>(sgName, branchConfig.metTermName)).first->second;
1170
1171 if (m_nonContainers.contains(sgName))
1172 return *m_processors.emplace (processorName, std::make_unique<ElementProcessorRegular>(sgName)).first->second;
1173
1174 return *m_processors.emplace (processorName, std::make_unique<ContainerProcessorRegular>(sgName)).first->second;
1175 }
1176 }
1177}
const std::regex re(r_e)
#define endmsg
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_DEBUG(x)
Base class for elements of a container that can have aux data.
Manage index tracking and synchronization of auxiliary data.
std::vector< size_t > vec
#define ANA_MSG_ERROR(xmsg)
Macro printing error messages.
#define ANA_MSG_VERBOSE(xmsg)
Macro printing verbose messages.
#define ANA_CHECK(EXP)
check whether the given expression was successful
Interface providing I/O for a generic auxiliary store.
Interface for factory objects that create vectors.
static Double_t a
static HEPVis_BooleanProcessor processor
void operator()(T1)
size_t size() const
Number of registered mappings.
#define ATLAS_NOT_CONST_THREAD_SAFE
the interface for the central systematics service
virtual CP::SystematicSet getObjectSystematics(const std::string &name) const =0
get the systematics for the given object in the event store
virtual std::vector< CP::SystematicSet > makeSystematicsVector() const =0
get the list of systematics
virtual CP::SystematicSet getDecorSystematics(const std::string &objectName, const std::string &decorName) const =0
get the systematics for the given object in the event store
virtual StatusCode makeSystematicsName(std::string &result, const std::string &name, const CP::SystematicSet &sys) const =0
make the name for the given systematics
Class to wrap a set of SystematicVariations.
bool empty() const
returns: whether the set is empty
static StatusCode filterForAffectingSystematics(const SystematicSet &systConfig, const SystematicSet &affectingSystematics, SystematicSet &filteredSystematics)
description: filter the systematics for the affected systematics returns: success guarantee: strong f...
std::string m_branchName
Name of the branch being written.
StatusCode resize(size_t size, MsgStream &msg)
Function (re)sizing the variable for a new event.
std::unique_ptr< SG::IAuxTypeVector > m_data
The object managing the memory of the written variable.
StatusCode process(const SG::AuxElement &element, size_t index, MsgStream &msg)
Function processing the object, filling the variable.
std::unique_ptr< SG::TypelessConstAccessor > m_acc
Object accessing the variable in question.
virtual StatusCode setup(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData, MsgStream &msg) override
Function setting up the object, and the branch.
const SG::IAuxTypeVectorFactory * m_factory
Pointer to the helper object that handles this variable.
void * m_dataPtr
Helper variable, pointing at the object to be written.
TVirtualCollectionProxy * m_collProxy
Collection proxy used for iterating over the container.
std::string m_sgName
Name of the object in the event store.
int m_auxElementOffset
Offset of the element type to SG::AuxElement.
virtual StatusCode retrieveProcess(StoreType &evtStore) override
retrieve and process the object
virtual StatusCode addBranch(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData) override
Add one branch to the output tree.
std::vector< std::unique_ptr< ContainerBranchProcessor > > m_branches
List of branch processors set up for this xAOD object.
ContainerProcessorRegular(const std::string &sgName)
Default constructor.
std::unique_ptr< SG::IAuxTypeVector > m_data
The object managing the memory of the written variable.
void * m_dataPtr
Helper variable, pointing at the object to be written.
const SG::IAuxTypeVectorFactory * m_factory
Pointer to the helper object that handles this variable.
std::string m_branchName
Name of the branch being written.
virtual StatusCode setup(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData, MsgStream &msg) override
Function setting up the object, and the branch.
std::unique_ptr< SG::TypelessConstAccessor > m_acc
Object accessing the variable in question.
StatusCode process(const SG::AuxElement &element, MsgStream &msg)
Function processing the object, filling the variable.
std::vector< std::unique_ptr< ElementBranchProcessor > > m_branches
List of branch processors set up for this xAOD object.
std::string m_termName
Name of the MET term to retrieve.
virtual StatusCode addBranch(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData) override
Add one branch to the output tree.
ElementProcessorMet(const std::string &sgName, const std::string &termName)
Default constructor.
virtual StatusCode retrieveProcess(StoreType &evtStore) override
retrieve and process the object
std::string m_sgName
Name of the object in the event store.
virtual StatusCode retrieveProcess(StoreType &evtStore) override
retrieve and process the object
virtual StatusCode addBranch(TTree &tree, const BranchConfig &branchConfig, OutputBranchData &outputData) override
Add one branch to the output tree.
std::string m_sgName
Name of the object in the event store.
ElementProcessorRegular(const std::string &sgName)
Default constructor.
std::vector< std::unique_ptr< ElementBranchProcessor > > m_branches
List of branch processors set up for this xAOD object.
the interface class for classes reading an object from the event store and processing it
virtual StatusCode addBranch(TTree &, const BranchConfig &, OutputBranchData &)=0
Add one branch to the output tree.
StatusCode setupBranch(const BranchConfig &branchConfig, OutputBranchData &outputData, TTree &tree)
Function setting up an individual branch on the first event.
std::unordered_set< std::string > m_nonContainers
the non-containers
IObjectProcessor & getObjectProcessor(const BranchConfig &branchConfig, const std::string &sgName)
std::optional< int > defaultBasketSize
the default basket size
std::unordered_map< std::string, std::unique_ptr< IObjectProcessor > > m_processors
object processors
A non-templated base class for DataBucket, allows to access the transient object address as a void*.
virtual void * object()=0
virtual const std::type_info & tinfo() const =0
Return the type_info for the stored object.
virtual std::vector< const SG::DataProxy * > proxies() const =0
Return the list of all current proxies in store.
Handle mappings between names and auxid_t.
static AuxTypeRegistry & instance()
Return the singleton registry instance.
Manage index tracking and synchronization of auxiliary data.
Manage lookup of vectors of auxiliary data.
Helper class to provide constant type-safe access to aux data.
DataObject * accessData()
Access DataObject on-demand using conversion service.
Helper class to provide const generic access to aux data.
The Athena Transient Store API.
StatusCode retrieve(const T *&ptr) const
Retrieve the default object into a const T*.
MsgStream & msg() const
The standard message stream.
MsgStream & msg() const
The standard message stream.
AsgMessaging(const std::string &name)
Constructor with a name.
Wrapper for Event to make it look like StoreGate.
Definition SgEvent.h:44
bool contains(const std::string &name) const
Check if an object is available for constant access.
xAOD::TStore * tds() const
Return the underlying transient data store.
Definition SgEvent.cxx:33
T * retrieve(const std::string &name) const
Function retrieving a constant or non-constant object.
This class takes care of holding EDM objects in memory.
Definition THolder.h:35
const std::type_info * getTypeInfo() const
Definition THolder.cxx:412
const THolder * holder(const std::string &key) const
return holder for key
Definition TStore.cxx:50
bool match(std::string s1, std::string s2)
match the individual directories of two strings
Definition hcg.cxx:359
a namespace for helper functions and objects for filling tree branches
StoreGateSvc StoreType
the type of the event store in the current environment
Select isolated Photons, Electrons and Muons.
std::string normalizedTypeinfoName(const std::type_info &info)
Convert a type_info to a normalized string representation (matching the names used in the root dictio...
static const auxid_t null_auxid
To signal no aux data item.
Definition AuxTypes.h:30
AuxElement(SG::AuxVectorData *container, size_t index)
Base class for elements of a container that can have aux data.
virtual const IAuxTypeVector * getVector(SG::auxid_t auxid) const override
Return vector interface for one aux data item.
size_t auxid_t
Identifier for a particular aux data item.
Definition AuxTypes.h:27
cl
print [x.__class__ for x in toList(dqregion.getSubRegions()) ]
Definition index.py:1
void stable_sort(DataModel_detail::iterator< DVL > beg, DataModel_detail::iterator< DVL > end)
Specialization of stable_sort for DataVector/List.
DataModel_detail::iterator< DVL > remove_if(typename DataModel_detail::iterator< DVL > beg, typename DataModel_detail::iterator< DVL > end, Predicate pred)
Specialization of remove_if for DataVector/List.
char rootType(char typeidType)
This function is used internally in the code when creating primitive dynamic auxiliary branches.
Convert a type_info to a normalized string representation (matching the names used in the root dictio...
the user configuration of an output branch
std::string branchDecl
the original user configuration string
std::string sgName
the SG name of the object to read from
const SG::IAuxTypeVectorFactory * auxFactory
pointer to the aux vector factory
std::string auxName
the aux data variable name to read from
const std::type_info * auxVecType
the vector type of the decoration we read
std::optional< int > basketSize
the basket size for this branch
CP::SystematicSet auxNameFilterSys
the affecting systematics for the auxName
CP::SystematicSet sgNameFilterSys
the affecting systematics for the sgName
CP::SystematicSet branchNameFilterSys
the affecting systematics for the branchName
const std::type_info * auxType
the type of the decoration we read
SG::auxid_t nominalAuxId
the aux-id for the nominal decoration
std::string branchName
the name of the output branch
std::string metTermName
MET ONLY: the name of the MET term to write out.
bool nominalOnly
whether we only want to write out the nominal
std::string typeName
the name of the type (or empty to read from aux-registry)
the data for a single output branch
bool isNominal
whether this is unaffected by systematics (i.e. nominal)
const BranchConfig * branchConfig
the BranchConfig we are based on
std::size_t sysIndex
the index in the systematics list
StatusCode configureNames(const BranchConfig &branchConfig, const CP::SystematicSet &sys, ISystematicsSvc &sysSvc, MsgStream &msg)
configure names for systematics
std::string auxName
the name of the decoration in the aux-store
std::string sgName
the SG name of the object to read from
std::string branchName
the name of the output branch
MsgStream & msg
Definition testRead.cxx:32
TChain * tree
TFile * file