Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-05 09:08:43

0001 /// \cond ROOFIT_INTERNAL
0002 
0003 /*
0004  * Project: RooFit
0005  *
0006  * Copyright (c) 2023, CERN
0007  *
0008  * Redistribution and use in source and binary forms,
0009  * with or without modification, are permitted according to the terms
0010  * listed in LICENSE (http://roofit.sourceforge.net/license.txt)
0011  */
0012 
0013 #ifndef RooFit_RefCountList_h
0014 #define RooFit_RefCountList_h
0015 
0016 #include <RooLinkedList.h>
0017 
0018 class RooRefCountList : public RooLinkedList {
0019 public:
0020    RooRefCountList() {}
0021    ClassDefOverride(RooRefCountList, 1) // RooLinkedList alias for backwards compatibility
0022 };
0023 
0024 #endif
0025 
0026 /// \endcond