#include "ThinnedRefSet.h"
Description: A minimal set interface (insertion, contains(), clear()) for a set of Ref keys to a thinned collection
Usage:
A ThinnedRefSet contains Ref keys to a thinned collection. The keys are inserted as Refs to the thinned collection itself, or to any parent collections of the thinned collection.
The main use case are Selector classes for edm::ThinningProducer. There, an object of the class would be stored as a member of the Selector class, filled in Selector::preChoose(), calling contains() in Selector::choose(), and cleared in Selector::reset().
Example of filling
Example of querying if a key is present