Line data    Source code 
       1             : #include "AliNanoAODHeader.h"
       2             : #include "AliLog.h"
       3             : 
       4         170 : ClassImp(AliNanoAODHeader)
       5             : 
       6             : AliNanoAODHeader& AliNanoAODHeader::operator=(const AliNanoAODHeader& evt) {
       7             : 
       8           0 :     AliVHeader::operator=(evt); // FIXME: ok?
       9           0 :     AliNanoAODStorage::operator=(evt);
      10             : 
      11           0 :     return *this;
      12             : }
      13             : 
      14             : 
      15             : void  AliNanoAODHeader::Clear(Option_t * /*opt*/) {
      16             :   // empty storage
      17           0 :   fVars.clear();
      18           0 :   fNVars = 0;
      19           0 : }
      20             : 
      21             : void AliNanoAODHeader::NotImplemented(void) const {
      22           0 :   AliError("Not implemented");
      23           0 : }
       |