Tutorial on TMVA Classifiers

There is a Macro called TMVAClassificationApplication which did kind of what I wanted. It is a little bit difficult to first understand this. In the end, the Macro TMVAClassification creates a root file that contains everything you need to have (called TMVA.root or similar). The Application Macro then has an object called TReader that loads this file. Afterwards you have to book a method (the one you trained before). Lastly you iterate over your TTree that contains the data you want to classify and for each value you can let this reader calculate a value (depending on the type of classifier for example from -1 to 1) and then you have to simply take the data with a value above threshold and call this your signal.
I hope I could help a little, but sadly I myself am no expert on this topic yet.
Cheers,
Emil